##// END OF EJS Templates
Merge pull request #6024 from cxmcc/tab-completion-for-symlink-folders...
Thomas Kluyver -
r17039:b938eefd merge
parent child Browse files
Show More
@@ -84,7 +84,7 b' def module_list(path):'
84 84 # in its subdirectories. For performance reasons, do not
85 85 # recurse more than one level into subdirectories.
86 86 files = []
87 for root, dirs, nondirs in os.walk(path):
87 for root, dirs, nondirs in os.walk(path, followlinks=True):
88 88 subdir = root[len(path)+1:]
89 89 if subdir:
90 90 files.extend(pjoin(subdir, f) for f in nondirs)
General Comments 0
You need to be logged in to leave comments. Login now