summaryrefslogtreecommitdiff
path: root/poezio/plugin_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/plugin_manager.py')
-rw-r--r--poezio/plugin_manager.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/poezio/plugin_manager.py b/poezio/plugin_manager.py
index cd13e6d8..242132e6 100644
--- a/poezio/plugin_manager.py
+++ b/poezio/plugin_manager.py
@@ -92,8 +92,8 @@ class PluginManager(object):
except Exception as e:
log.error('Error while loading the plugin %s', name, exc_info=True)
if notify:
- self.core.information('Unable to load the plugin %s: %s' %
- (name, e), 'Error')
+ self.core.information(
+ 'Unable to load the plugin %s: %s' % (name, e), 'Error')
self.unload(name, notify=False)
else:
if notify:
@@ -129,8 +129,8 @@ class PluginManager(object):
self.core.information('Plugin %s unloaded' % name, 'Info')
except Exception as e:
log.debug("Could not unload plugin %s", name, exc_info=True)
- self.core.information("Could not unload plugin %s: %s" %
- (name, e), 'Error')
+ self.core.information(
+ "Could not unload plugin %s: %s" % (name, e), 'Error')
def add_command(self,
module_name,