diff --git a/pycirculate/anova.py b/pycirculate/anova.py index 835cca2..238c69c 100644 --- a/pycirculate/anova.py +++ b/pycirculate/anova.py @@ -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:]