summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--update_topic.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index e8090d7..d2628a3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+phenny-module-update-topic (0.4) UNRELEASED; urgency=low
+
+ * Fix python syntax for super calls
+
+ -- Alexander Sulfrian <alex@spline.inf.fu-berlin.de> Tue, 10 May 2016 01:54:02 +0200
+
phenny-module-update-topic (0.3) UNRELEASED; urgency=low
* Disable writes to the socket to wait for the timer
diff --git a/update_topic.py b/update_topic.py
index bdcba6c..47a6064 100644
--- a/update_topic.py
+++ b/update_topic.py
@@ -59,7 +59,7 @@ class Scheduler(asyncore.dispatcher):
def close(self):
self.timer.cancel()
- asyncore.dispatcher.close()
+ asyncore.dispatcher.close(self)
def writable(self):
return False