cc-4105: fixed little typo that caused a bug

This commit is contained in:
Rudi Grinberg 2012-08-13 10:59:01 -04:00
parent 076a9c2296
commit 3ce2555a35
2 changed files with 5 additions and 4 deletions

View file

@ -9,7 +9,7 @@ class EventContractor(Loggable):
return evt.path in self.store
def get_old_event(self, evt):
return evt.store[ evt.path ]
return self.store[ evt.path ]
def register(self, evt):
if self.event_registered(evt):