mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-03 19:07:47 +03:00
[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
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue