diff options
| author | Nuno Santos <nsantos@apache.org> | 2010-05-25 18:42:49 +0000 |
|---|---|---|
| committer | Nuno Santos <nsantos@apache.org> | 2010-05-25 18:42:49 +0000 |
| commit | f7dd102a15a5116931b9f75f1741de46581bc4a0 (patch) | |
| tree | 3883d5adfcce05b3f50905e626b2c73f3cbf44ff | |
| parent | 5b381f3f71c69ab356527965a639466bc3bc3615 (diff) | |
| download | qpid-python-f7dd102a15a5116931b9f75f1741de46581bc4a0.tar.gz | |
handle SystemExit exception on python 2.4.3
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@948164 13f79535-47bb-0310-9956-ffa450edef68
| -rwxr-xr-x | qpid/tools/src/py/qpid-config | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/tools/src/py/qpid-config b/qpid/tools/src/py/qpid-config index 140628f737..a97b6cba94 100755 --- a/qpid/tools/src/py/qpid-config +++ b/qpid/tools/src/py/qpid-config @@ -575,6 +575,8 @@ except KeyboardInterrupt: except IOError, e: print e sys.exit(1) +except SystemExit, e: + sys.exit(1) except Exception,e: if e.__class__.__name__ != "Timeout": # ignore Timeout exception, handle in the loop below |
