diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugin_manager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin_manager.py b/src/plugin_manager.py index ef0fae08..a81e3033 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -5,7 +5,7 @@ the API together. Defines also a bunch of variables related to the plugin env. """ -import importlib +from importlib import machinery import os import sys import logging @@ -39,7 +39,7 @@ except OSError: pass sys.path.append(plugins_dir) -finder = importlib.machinery.PathFinder() +finder = machinery.PathFinder() class PluginManager(object): """ |