From be292021f47eeaa1364bedb2dc9232b60c404fce Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Tue, 24 Jan 2012 11:43:46 +1100 Subject: autobuild.py: Catch only true exceptions in except statement sys.exit(0) raises systemExit which is caught in empty except: statement. This can change the exit status if except: condition is supposed to exit with different status value. --- script/autobuild.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'script') diff --git a/script/autobuild.py b/script/autobuild.py index d6ad082510..8ddd4b3e66 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -493,7 +493,7 @@ while True: run_cmd("rm -rf %s" % test_master) cleanup_list.append(test_master) run_cmd("git clone --shared %s %s" % (gitroot, test_master), show=True, dir=gitroot) - except: + except Exception: cleanup() raise @@ -503,7 +503,7 @@ while True: rebase_tree(options.rebase) elif options.rebase_master: rebase_tree(samba_master) - except: + except Exception: cleanup_list.append(gitroot + "/autobuild.pid") cleanup() email_failure(-1, 'rebase', 'rebase', 'rebase', 'rebase on master failed') @@ -515,7 +515,7 @@ while True: if status != 0 or errstr != "retry": break cleanup() - except: + except Exception: cleanup() raise -- cgit