[Plugins] Fix allow enabling any plugin Python version
Properly fix allow enabling any plugin Python version, first attempted
in previous commit 3433a91
Closes: deluge-torrent/deluge#316
This commit is contained in:
parent
d56636426e
commit
7a110bd60f
|
@ -105,7 +105,9 @@ class PluginManagerBase(object):
|
|||
|
||||
for dirname in plugin_dirs:
|
||||
pkg_resources.working_set.add_entry(dirname)
|
||||
self.pkg_env = pkg_resources.Environment(plugin_dirs, None)
|
||||
self.pkg_env = pkg_resources.Environment(
|
||||
plugin_dirs, platform=None, python=None
|
||||
)
|
||||
|
||||
self.available_plugins = []
|
||||
for name in self.pkg_env:
|
||||
|
|
Loading…
Reference in New Issue