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 | 248037126b68039ae3c0f4da6eef3b87d9e02f7f (patch) | |
| tree | 322babdd29a677255243bf4107cdb6cddc1b263a /tools/src | |
| parent | 476baeaf52da96b370a11d3a4c570b44f9a0c7b9 (diff) | |
| download | qpid-python-248037126b68039ae3c0f4da6eef3b87d9e02f7f.tar.gz | |
handle SystemExit exception on python 2.4.3
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@948164 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tools/src')
| -rwxr-xr-x | tools/src/py/qpid-config | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/src/py/qpid-config b/tools/src/py/qpid-config index 140628f737..a97b6cba94 100755 --- a/tools/src/py/qpid-config +++ b/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 |
