diff options
| author | Gordon Sim <gsim@apache.org> | 2007-08-09 09:03:42 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-08-09 09:03:42 +0000 |
| commit | 462fd7ae8c6ac92730ebc497a9140ecec0cc03d9 (patch) | |
| tree | 66022c7d2469fe870687061530628c20960f86d0 /python/qpid | |
| parent | 59df4a957b21318b917e89839d9363aab9333cf6 (diff) | |
| download | qpid-python-462fd7ae8c6ac92730ebc497a9140ecec0cc03d9.tar.gz | |
Fixed syntax error in handling of timeouts.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@564154 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid')
| -rw-r--r-- | python/qpid/peer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/peer.py b/python/qpid/peer.py index 4a560fca5a..bbba94623d 100644 --- a/python/qpid/peer.py +++ b/python/qpid/peer.py @@ -318,7 +318,7 @@ class Channel: 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: |
