kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Fix #1155: Fixed crash on python 3.5 with cli importer
rodzic
3a0c930dd5
commit
85c6baca9a
|
@ -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"):
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fixed crash on python 3.5 with cli importer (#1155)
|
Ładowanie…
Reference in New Issue