From e731b50f5fbbe030b39cf10b285bf5e1b581980f Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sun, 25 Sep 2016 07:39:25 -0400 Subject: [PATCH] Fixed the import names for plugins. --- src/apex/plugin_loader.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apex/plugin_loader.py b/src/apex/plugin_loader.py index 81a82c6..5333105 100644 --- a/src/apex/plugin_loader.py +++ b/src/apex/plugin_loader.py @@ -16,10 +16,10 @@ __credits__ = [] PluginFolder = './plugins' MainModule = '__init__' -plugins = ['plugins.apexparadigm', - 'plugins.beacon', - 'plugins.id', - 'plugins.status'] +plugins = ['apex.plugins.apexparadigm', + 'apex.plugins.beacon', + 'apex.plugins.id', + 'apex.plugins.status'] def get_plugins(): -- GitLab