diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-15 12:01:42 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-15 12:01:42 +0200 |
commit | 85371bff8cc5e70531c87b5708d3334412831a78 (patch) | |
tree | 0b9889567cd68f58e8f46e258b674b124a0ba888 /voctocore/lib/avrawoutput.py | |
parent | 18af1394a8b732d94b48b8f13e78cfcae3e45a6e (diff) |
Use existing addr object where available
Diffstat (limited to 'voctocore/lib/avrawoutput.py')
-rw-r--r-- | voctocore/lib/avrawoutput.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/voctocore/lib/avrawoutput.py b/voctocore/lib/avrawoutput.py index 3c7d739..912c292 100644 --- a/voctocore/lib/avrawoutput.py +++ b/voctocore/lib/avrawoutput.py @@ -50,6 +50,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) + self.close_connection(conn, addr) fdsink.connect('client-fd-removed', on_disconnect) |