Fixed legacy plugin state

This commit is contained in:
Joel Collins 2019-11-20 14:11:28 +00:00
parent 0b2536a79b
commit 36f195d6e7

View file

@ -161,7 +161,7 @@ class PluginLoader(object):
logging.warning( logging.warning(
"PluginMount.state is deprecated. Use PluginMount.active instead. State will be removed in a future version." "PluginMount.state is deprecated. Use PluginMount.active instead. State will be removed in a future version."
) )
return [m["python_name"] for m in self._plugins] return list(self._legacy_plugins.keys())
@property @property
def active(self): def active(self):