Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Philipp Wolfer
funkwhale
Commits
85c6baca
Unverified
Commit
85c6baca
authored
Jun 11, 2020
by
Agate
💬
Browse files
Fix #1155: Fixed crash on python 3.5 with cli importer
parent
3a0c930d
Changes
2
Hide whitespace changes
Inline
Side-by-side
api/funkwhale_api/music/management/commands/import_files.py
View file @
85c6baca
...
...
@@ -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"
):
...
...
changes/changelog.d/1155.bugfix
0 → 100644
View file @
85c6baca
Fixed crash on python 3.5 with cli importer (#1155)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment