From 4b37a75e9cb89088451753c7467d1d1bcddd29e0 Mon Sep 17 00:00:00 2001 Message-Id: <4b37a75e9cb89088451753c7467d1d1bcddd29e0.1715717892.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 15 Oct 2009 20:55:15 +0100 Subject: [PATCH] Don't catch SystemExit 77 in tests. Organization: Straylight/Edgeware From: Richard Kettlewell --- tests/dtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dtest.py b/tests/dtest.py index 8a4644a..49bbfaa 100644 --- a/tests/dtest.py +++ b/tests/dtest.py @@ -333,7 +333,7 @@ def run(module=None, report=True): stdtracks() try: module.test() - except: + except Exception, e: traceback.print_exc(None, sys.stderr) failures += 1 stop_daemon() -- [mdw]