summaryrefslogtreecommitdiff
path: root/voctocore/lib/avrawoutput.py
diff options
context:
space:
mode:
authorMaZderMind <github@mazdermind.de>2015-05-22 12:29:10 +0200
committerMaZderMind <github@mazdermind.de>2015-05-22 12:29:10 +0200
commita1d1076b2243f6c1e9527afb0be359407fe2f4c4 (patch)
tree00e7ce8bd4d49cbf00555bf70b645fcee88bbdb9 /voctocore/lib/avrawoutput.py
parent7032dd72208b9d44d41aff6d114dd01256940e7e (diff)
Cannot relyably determin the closed connections' addresst. so don't try to.
Diffstat (limited to 'voctocore/lib/avrawoutput.py')
-rw-r--r--voctocore/lib/avrawoutput.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/voctocore/lib/avrawoutput.py b/voctocore/lib/avrawoutput.py
index bda6b77..ea13ad4 100644
--- a/voctocore/lib/avrawoutput.py
+++ b/voctocore/lib/avrawoutput.py
@@ -48,6 +48,6 @@ class AVRawOutput(TCPMultiConnection):
def on_disconnect(multifdsink, fileno):
if fileno == conn.fileno():
self.log.debug('fd %u removed from multifdsink', fileno)
- self.close_connection(conn, addr)
+ self.close_connection(conn)
fdsink.connect('client-fd-removed', on_disconnect)