Commit 36f195d6 authored by Joel Collins's avatar Joel Collins
Browse files

Fixed legacy plugin state

parent 0b2536a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ class PluginLoader(object):
        logging.warning(
            "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
    def active(self):