Skip to content
Snippets Groups Projects
Commit 83795aca authored by sveseli's avatar sveseli
Browse files

fix recursive directory search

parent 6f639ea8
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ class OsUtility: ...@@ -86,7 +86,7 @@ class OsUtility:
if os.path.isfile(fullPath): if os.path.isfile(fullPath):
fList.append(fullPath) fList.append(fullPath)
elif os.path.isdir(fullPath): elif os.path.isdir(fullPath):
fList = findFiles(fullPath, fList) fList = cls.findFiles(fullPath, fList)
return fList return fList
@classmethod @classmethod
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment