diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-07 15:15:34 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-07 15:15:34 +0100 |
commit | 953783c2001c55da7aa42077f7e109306adb1ef9 (patch) | |
tree | 5ec4276788185a9672065d1527350416f0b2caff /src/plugin_manager.py | |
parent | 41b54973309d49932e4a5459bd76b0ef671e4545 (diff) | |
parent | d6b8ca50f2c046aa1248173f453b3804f40c479a (diff) | |
download | poezio-953783c2001c55da7aa42077f7e109306adb1ef9.tar.gz poezio-953783c2001c55da7aa42077f7e109306adb1ef9.tar.bz2 poezio-953783c2001c55da7aa42077f7e109306adb1ef9.tar.xz poezio-953783c2001c55da7aa42077f7e109306adb1ef9.zip |
Merge branch 'plugins' of https://git.louiz.org/poezio into plugins
Diffstat (limited to 'src/plugin_manager.py')
-rw-r--r-- | src/plugin_manager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin_manager.py b/src/plugin_manager.py index 37db3d13..bdf94a5b 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -107,10 +107,10 @@ class PluginManager(object): eh = self.event_handlers[module_name] eh = list(filter(lambda e : e != (event_name, handler), eh)) - def add_poezio_event_handler(self, module_name, event_name, handler, first, last, position): + def add_poezio_event_handler(self, module_name, event_name, handler, position): eh = self.poezio_event_handlers[module_name] eh.append(handler) - self.core.events.add_event_handler(event_name, handler, first, last, position) + self.core.events.add_event_handler(event_name, handler, position) def del_poezio_event_handler(self, module_name, event_name, handler): self.core.events.del_event_handler(None, handler) |