Merge branch '1155-compat' into 'master'

Resolve "CLI import issue python3.5 related"

See merge request funkwhale/funkwhale!1140
This commit is contained in:
Agate 2020-06-11 06:17:50 +02:00
commit 02f7582747
2 changed files with 2 additions and 1 deletions

View File

@ -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"):

View File

@ -0,0 +1 @@
Fixed crash on python 3.5 with cli importer (#1155)