summaryrefslogtreecommitdiff
path: root/src/plugin_manager.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-07 15:09:39 +0100
committermathieui <mathieui@mathieui.net>2011-11-07 15:09:39 +0100
commitd6b8ca50f2c046aa1248173f453b3804f40c479a (patch)
tree9a6d64a2c5a6c664a0f32416b53bed96f7073603 /src/plugin_manager.py
parent1f3fafe15569c50fc877b5b24209e1d1214ae97a (diff)
downloadpoezio-d6b8ca50f2c046aa1248173f453b3804f40c479a.tar.gz
poezio-d6b8ca50f2c046aa1248173f453b3804f40c479a.tar.bz2
poezio-d6b8ca50f2c046aa1248173f453b3804f40c479a.tar.xz
poezio-d6b8ca50f2c046aa1248173f453b3804f40c479a.zip
Remove first&last and only use "position" in plugins events
Diffstat (limited to 'src/plugin_manager.py')
-rw-r--r--src/plugin_manager.py4
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)