summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2016-05-10 01:53:32 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2016-05-10 02:02:27 +0200
commit2545186173e8ca7f937764a4cc777557a691e16e (patch)
tree104a6370da60e6bd2332fd7e4a984c8921e14f3f
parent13d6de588b31e6d29a79623a5c6b8a575a25deb3 (diff)
downloadupdate-topic-2545186173e8ca7f937764a4cc777557a691e16e.tar.gz
update-topic-2545186173e8ca7f937764a4cc777557a691e16e.tar.bz2
update-topic-2545186173e8ca7f937764a4cc777557a691e16e.zip
Fix python syntax for super calls
-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