Skip to content
Snippets Groups Projects
Unverified Commit 1668dc4f authored by Agate's avatar Agate 💬
Browse files

Merge branch 'master' into develop

parents d145edcd 02f75827
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ def crawl_dir(dir, extensions, recursive=True, ignored=[]):
yield entry.path
elif recursive and entry.is_dir():
yield from crawl_dir(
entry, extensions, recursive=recursive, ignored=ignored
entry.path, extensions, recursive=recursive, ignored=ignored
)
finally:
if hasattr(scanner, "close"):
......
Fixed crash on python 3.5 with cli importer (#1155)
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