summaryrefslogtreecommitdiff
path: root/qpid/python
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
commitd12057f1ac95e410c13a05abc757377132bdca35 (patch)
tree69f38b7fadea150e0d3e05db3fbe360e6750c9e4 /qpid/python
parent1d55ce68b88256a4de0329d3104436b0c581000c (diff)
downloadqpid-python-d12057f1ac95e410c13a05abc757377132bdca35.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@1493873 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/qpid/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/qpid/util.py b/qpid/python/qpid/util.py
index 8da17ce0c6..fcc126154a 100644
--- a/qpid/python/qpid/util.py
+++ b/qpid/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