Merge branch 'master' into develop
This commit is contained in:
commit
1668dc4f59
|
@ -37,7 +37,7 @@ def crawl_dir(dir, extensions, recursive=True, ignored=[]):
|
||||||
yield entry.path
|
yield entry.path
|
||||||
elif recursive and entry.is_dir():
|
elif recursive and entry.is_dir():
|
||||||
yield from crawl_dir(
|
yield from crawl_dir(
|
||||||
entry, extensions, recursive=recursive, ignored=ignored
|
entry.path, extensions, recursive=recursive, ignored=ignored
|
||||||
)
|
)
|
||||||
finally:
|
finally:
|
||||||
if hasattr(scanner, "close"):
|
if hasattr(scanner, "close"):
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Fixed crash on python 3.5 with cli importer (#1155)
|
Loading…
Reference in New Issue