From a118f29fd275eb61263aefc945e39f7903cc56b2 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 6 May 2010 18:27:14 +0200 Subject: irssi_socket_control.py: always close socket Signed-off-by: Florian Pritz --- irssi_socket_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'irssi_socket_control.py') diff --git a/irssi_socket_control.py b/irssi_socket_control.py index 876c707..e613149 100755 --- a/irssi_socket_control.py +++ b/irssi_socket_control.py @@ -37,7 +37,7 @@ def handler(away): s.send("command /away afk") else: s.send("command /away") - s.close() + s.close() def main(): try: -- cgit v1.2.3-24-g4f1b