diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-06 19:52:59 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-06 19:58:57 +0200 |
commit | e216fd2112c796bd625730f711861b7361f6fe9f (patch) | |
tree | 942239b0bf00dec0f9afd9e036a1bcedf449e6d3 /src/plugin_manager.py | |
parent | 218c71dfbfb9f564eb1ec2a966df24eef2efbdec (diff) | |
download | poezio-e216fd2112c796bd625730f711861b7361f6fe9f.tar.gz poezio-e216fd2112c796bd625730f711861b7361f6fe9f.tar.bz2 poezio-e216fd2112c796bd625730f711861b7361f6fe9f.tar.xz poezio-e216fd2112c796bd625730f711861b7361f6fe9f.zip |
Code cleanup
fixes whitespace issues, some builtin overrides, and some enormous lines
might make poezio run nanoseconds faster!
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 45fccb10..28dde603 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -290,7 +290,7 @@ class PluginManager(object): else: self.core.xmpp.del_event_handler(event_name, handler) eh = self.event_handlers[module_name] - eh = list(filter(lambda e : e != (event_name, handler), eh)) + eh = list(filter(lambda e: e != (event_name, handler), eh)) def completion_load(self, the_input): """ |