diff options
author | mathieui <mathieui@mathieui.net> | 2013-05-11 12:00:37 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-05-11 12:00:37 +0200 |
commit | dde153e85b257de453c9587a09881af0649b5c16 (patch) | |
tree | 249353b4d7efa3ae1de8c22ab51c70572c099dee | |
parent | 465b46b565ccdf50d3eeedd73aeda76cbaf72487 (diff) | |
download | poezio-dde153e85b257de453c9587a09881af0649b5c16.tar.gz poezio-dde153e85b257de453c9587a09881af0649b5c16.tar.bz2 poezio-dde153e85b257de453c9587a09881af0649b5c16.tar.xz poezio-dde153e85b257de453c9587a09881af0649b5c16.zip |
Reverse the plugin loading path
-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 d5e6a8fc..208f2472 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -47,8 +47,8 @@ except OSError: default_plugin_path = path.join(path.dirname(path.dirname(__file__)), 'plugins') -sys.path.append(default_plugin_path) sys.path.append(plugins_dir) +sys.path.append(default_plugin_path) if version_info[1] >= 3: # 3.3 & > from importlib import machinery |