Author: gsim
Date: Thu Aug 9 02:03:42 2007
New Revision: 564154
URL: http://svn.apache.org/viewvc?view=rev&rev=564154
Log:
Fixed syntax error in handling of timeouts.
Modified:
incubator/qpid/trunk/qpid/python/qpid/peer.py
Modified: incubator/qpid/trunk/qpid/python/qpid/peer.py
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/qpid/peer.py?view=diff&rev=564154&r1=564153&r2=564154
==============================================================================
--- incubator/qpid/trunk/qpid/python/qpid/peer.py (original)
+++ incubator/qpid/trunk/qpid/python/qpid/peer.py Thu Aug 9 02:03:42 2007
@@ -318,7 +318,7 @@
if self.closed:
raise Closed(self.reason)
if not completed:
- raise close("Timed-out waiting for completion")
+ self.close("Timed-out waiting for completion")
except QueueClosed, e:
if self.closed: