Author: tross
Date: Mon Dec  1 13:03:39 2008
New Revision: 722229

URL: http://svn.apache.org/viewvc?rev=722229&view=rev
Log:
Fixed a logic bug in a try/finally

Modified:
    incubator/qpid/trunk/qpid/python/qmf/console.py

Modified: incubator/qpid/trunk/qpid/python/qmf/console.py
URL: 
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/qmf/console.py?rev=722229&r1=722228&r2=722229&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/qmf/console.py (original)
+++ incubator/qpid/trunk/qpid/python/qmf/console.py Mon Dec  1 13:03:39 2008
@@ -1182,7 +1182,7 @@
           if self.canceled:
             return
           delay = self.DELAY_MIN
-        except:
+        finally:
           self.cv.release()
       except:
         if delay < self.DELAY_MAX:


Reply via email to