From e3bc2893e6a3fae16079ba7bdcb034f3026fee76 Mon Sep 17 00:00:00 2001 From: Jonathan Robie Date: Mon, 9 Aug 2010 17:31:40 +0000 Subject: Removed finally - Python before 2.5 did not allow finally together with specific exceptions. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@983743 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/python/examples/api/hello | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qpid/python/examples/api/hello') diff --git a/qpid/python/examples/api/hello b/qpid/python/examples/api/hello index a220fe794e..ad314da19e 100755 --- a/qpid/python/examples/api/hello +++ b/qpid/python/examples/api/hello @@ -48,5 +48,5 @@ try: except MessagingError,m: print m -finally: - connection.close() + +connection.close() -- cgit v1.2.1