From d501e1c71abea09c0e5a847ae1e1cf1baabbe59c Mon Sep 17 00:00:00 2001 From: Erik Wickstrom Date: Tue, 25 Aug 2015 15:16:14 -0700 Subject: [PATCH] Added missing method argument. --- pycirculate/anova.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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:]