You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2013/06/17 20:41:57 UTC

svn commit: r1493873 - /qpid/trunk/qpid/python/qpid/util.py

Author: aconway
Date: Mon Jun 17 18:41:57 2013
New Revision: 1493873

URL: http://svn.apache.org/r1493873
Log:
NO-JIRA: Fix typo "sock.close" in qpid/python/qpid/util.py

Added missing parentheses on call to sock.close().

Modified:
    qpid/trunk/qpid/python/qpid/util.py

Modified: qpid/trunk/qpid/python/qpid/util.py
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/python/qpid/util.py?rev=1493873&r1=1493872&r2=1493873&view=diff
==============================================================================
--- qpid/trunk/qpid/python/qpid/util.py (original)
+++ qpid/trunk/qpid/python/qpid/util.py Mon Jun 17 18:41:57 2013
@@ -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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org