summaryrefslogtreecommitdiff
path: root/python/qpid
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2013-06-17 18:41:57 +0000
committerAlan Conway <aconway@apache.org>2013-06-17 18:41:57 +0000
commitcda338e4a7e978289199aedfda563f30d540a921 (patch)
treec90be839d2d4df4bac512bd8e01353f36137c887 /python/qpid
parent1093062db03077998823cbefb9ca9645076694ea (diff)
downloadqpid-python-cda338e4a7e978289199aedfda563f30d540a921.tar.gz
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
Diffstat (limited to 'python/qpid')
-rw-r--r--python/qpid/util.py2
1 files changed, 1 insertions, 1 deletions
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