From 414c916947f944ed965a346b1e11a5e1634b7a0f Mon Sep 17 00:00:00 2001 From: duplo Date: Fri, 24 Sep 2010 13:12:02 +0000 Subject: [PATCH] Add followlinks=True when calling os.walk (attempt to fix #169). git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4299 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/plugins/codelite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wizard/plugins/codelite.py b/wizard/plugins/codelite.py index cff2c607..19c5ac71 100644 --- a/wizard/plugins/codelite.py +++ b/wizard/plugins/codelite.py @@ -82,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: -- 2.25.1