From d8b12a35df88aaccf7403cecad73daf6e51acf70 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 18 Nov 2012 13:46:50 +0100 Subject: For some reasons, importlib.machinery does not work on some platforms --- src/plugin_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugin_manager.py') 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): """ -- cgit v1.2.3