Skip to content
Snippets Groups Projects
Commit 02f75827 authored by Agate's avatar Agate :speech_balloon:
Browse files

Merge branch '1155-compat' into 'master'

Resolve "CLI import issue python3.5 related"

See merge request funkwhale/funkwhale!1140
parents 3a0c930d 85c6baca
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.
Please register or to comment