summaryrefslogtreecommitdiff
path: root/python/qmf
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2008-12-01 21:03:39 +0000
committerTed Ross <tross@apache.org>2008-12-01 21:03:39 +0000
commit979141b8d0fef081d179cc7817cbf4acdb8ced79 (patch)
treea99b1529fb8a88a7f76fd99bb7254b7f73517fc0 /python/qmf
parenta03d20dd52beb9588bcff3fa0924489372172f18 (diff)
downloadqpid-python-979141b8d0fef081d179cc7817cbf4acdb8ced79.tar.gz
Fixed a logic bug in a try/finally
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@722229 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qmf')
-rw-r--r--python/qmf/console.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qmf/console.py b/python/qmf/console.py
index 827a28d891..6b0826f37d 100644
--- a/python/qmf/console.py
+++ b/python/qmf/console.py
@@ -1182,7 +1182,7 @@ class ManagedConnection(Thread):
if self.canceled:
return
delay = self.DELAY_MIN
- except:
+ finally:
self.cv.release()
except:
if delay < self.DELAY_MAX: