diff options
author | mathieui <mathieui@mathieui.net> | 2013-08-10 15:51:35 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-08-10 15:51:35 +0200 |
commit | 74de91e2bf9b8ed4ddb34b9cacee0e2e9921f6f3 (patch) | |
tree | e237315b22f27001cb7e417eb479314f918d4b92 /src/plugin_manager.py | |
parent | 518f933fb848848e91456474fb52c153854de95f (diff) | |
download | poezio-74de91e2bf9b8ed4ddb34b9cacee0e2e9921f6f3.tar.gz poezio-74de91e2bf9b8ed4ddb34b9cacee0e2e9921f6f3.tar.bz2 poezio-74de91e2bf9b8ed4ddb34b9cacee0e2e9921f6f3.tar.xz poezio-74de91e2bf9b8ed4ddb34b9cacee0e2e9921f6f3.zip |
Fix potential issues with import paths
Diffstat (limited to 'src/plugin_manager.py')
-rw-r--r-- | src/plugin_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin_manager.py b/src/plugin_manager.py index bb139dad..d691b3b5 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -60,7 +60,7 @@ except: pass else: if poezio_plugins.__path__: - load_path.append(poezio_plugins.__path__[0]) + load_path.append(list(poezio_plugins.__path__)[0]) if version_info[1] >= 3: # 3.3 & > from importlib import machinery |