diff options
| author | Alan Conway <aconway@apache.org> | 2013-06-17 18:41:57 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2013-06-17 18:41:57 +0000 |
| commit | cda338e4a7e978289199aedfda563f30d540a921 (patch) | |
| tree | c90be839d2d4df4bac512bd8e01353f36137c887 /python/qpid/util.py | |
| parent | 1093062db03077998823cbefb9ca9645076694ea (diff) | |
| download | qpid-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/util.py')
| -rw-r--r-- | python/qpid/util.py | 2 |
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 |
