From cda338e4a7e978289199aedfda563f30d540a921 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 17 Jun 2013 18:41:57 +0000 Subject: NO-JIRA: Fix typo "sock.close" in qpid/python/qpid/util.py Added missing parentheses on call to sock.close(). git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1493873 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/qpid/util.py b/python/qpid/util.py index 8da17ce0c6..fcc126154a 100644 --- a/python/qpid/util.py +++ b/python/qpid/util.py @@ -68,7 +68,7 @@ def connect(host, port): sock.connect(sa) break except socket.error, msg: - sock.close + sock.close() else: # If we got here then we couldn't connect (yet) raise -- cgit v1.2.1