Skip to content

Commit

Permalink
Added missing method argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikcw committed Aug 25, 2015
1 parent 48b7798 commit d501e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycirculate/anova.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def handleNotification(self, cHandle, data):
# print repr(self), "handleNotification(), cHandle: ", cHandle, "data: ", data
self._store_notification(cHandle, data)

def _store_notification(cHandle, data):
def _store_notification(self, cHandle, data):
self.last_notifications.append((cHandle, data))
# keep the last 10 notifications
self.last_notifications = self.last_notifications[-10:]
Expand Down

0 comments on commit d501e1c

Please sign in to comment.