diff options
| author | Jonathan Robie <jonathan@apache.org> | 2010-08-09 17:31:40 +0000 |
|---|---|---|
| committer | Jonathan Robie <jonathan@apache.org> | 2010-08-09 17:31:40 +0000 |
| commit | e3bc2893e6a3fae16079ba7bdcb034f3026fee76 (patch) | |
| tree | 1db61aeed50308f7ea0159f3870e54bc1b02dbe3 /qpid/python/examples/api/hello_xml | |
| parent | 4b67ae91be27048aca8ded77b1089dd0487eff03 (diff) | |
| download | qpid-python-e3bc2893e6a3fae16079ba7bdcb034f3026fee76.tar.gz | |
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
Diffstat (limited to 'qpid/python/examples/api/hello_xml')
| -rwxr-xr-x | qpid/python/examples/api/hello_xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/examples/api/hello_xml b/qpid/python/examples/api/hello_xml index 07c2b13120..ab567ec5dd 100755 --- a/qpid/python/examples/api/hello_xml +++ b/qpid/python/examples/api/hello_xml @@ -73,5 +73,5 @@ try: except MessagingError,m: print m -finally: - connection.close() + +connection.close() |
