We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
utils.SearchFiles
1 parent 56cbc7f commit 768e562Copy full SHA for 768e562
tools/utils.py
@@ -112,4 +112,4 @@ def SearchFiles(dir, ext):
112
list = glob.glob(dir+ '/**/*.' + ext, recursive=True)
113
if sys.platform == 'win32':
114
list = [ x.replace('\\', '/')for x in list]
115
- return list
+ return sorted(list)
0 commit comments