Show More
@@ -60,6 +60,7 b' class EventManager(object):' | |||||
60 | if not callable(function): |
|
60 | if not callable(function): | |
61 | raise TypeError('Need a callable, got %r' % function) |
|
61 | raise TypeError('Need a callable, got %r' % function) | |
62 | callback_proto = available_events.get(event) |
|
62 | callback_proto = available_events.get(event) | |
|
63 | if function not in self.callbacks[event]: | |||
63 | self.callbacks[event].append(callback_proto.adapt(function)) |
|
64 | self.callbacks[event].append(callback_proto.adapt(function)) | |
64 |
|
65 | |||
65 | def unregister(self, event, function): |
|
66 | def unregister(self, event, function): |
General Comments 0
You need to be logged in to leave comments.
Login now