mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 10:39:16 +02:00
Merge branch 'master' into develop
This commit is contained in:
commit
1668dc4f59
2 changed files with 2 additions and 1 deletions
|
@ -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"):
|
||||
|
|
1
changes/changelog.d/1155.bugfix
Normal file
1
changes/changelog.d/1155.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fixed crash on python 3.5 with cli importer (#1155)
|
Loading…
Add table
Add a link
Reference in a new issue