mirror of
https://github.com/beetbox/beets.git
synced 2025-12-25 18:13:17 +01:00
Avoid mysterious namespace path problem (#3717)
I'm still not sure what causes this problem (or more pertinently, what makes this problem *not* happen for me and others), but this should work around it regardless.
This commit is contained in:
parent
56f1aa29ac
commit
bfb954877a
1 changed files with 1 additions and 1 deletions
|
|
@ -1114,7 +1114,7 @@ def _load_plugins(config):
|
|||
|
||||
# Extend the `beetsplug` package to include the plugin paths.
|
||||
import beetsplug
|
||||
beetsplug.__path__ = paths + beetsplug.__path__
|
||||
beetsplug.__path__ = paths + list(beetsplug.__path__)
|
||||
|
||||
# For backwards compatibility, also support plugin paths that
|
||||
# *contain* a `beetsplug` package.
|
||||
|
|
|
|||
Loading…
Reference in a new issue