STM32: USB: compact code and silent a buggy doxygen warning
[bertos.git] / wizard / plugins / codelite.py
index 1638823304d0ad243fc2c7127496c63f45795126..19c5ac7181fb772d2ab28408fa569802153c3bd2 100644 (file)
@@ -28,7 +28,6 @@
 #
 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
 #
-# $Id$
 #
 # Author: Lorenzo Berni <duplo@develer.com>
 #
@@ -83,7 +82,7 @@ def findSources(path):
     if not path.endswith(os.sep):
         path += os.sep
     file_dict = {}
-    for root, dirs, files in os.walk(path):
+    for root, dirs, files in os.walk(path, followlinks=True):
         if root.find("svn") == -1:
             file_dict[root.replace(path, "")] = {"dirs": [], "files": []}
             for dir in dirs: