From 536ec370376f47587c47ba7b6b383a32f0a422ab Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 9 Aug 2013 17:48:53 +0200 Subject: [PATCH] commands.py: raise the exception instead of returning is if --disable-multiprocessing is given. --- src/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.py b/src/commands.py index 5bff7cf43..3d699c85e 100644 --- a/src/commands.py +++ b/src/commands.py @@ -99,7 +99,7 @@ def process(f, *args, **kwargs): try: return f(*args, **kwargs) except Exception as e: - return e + raise e q = multiprocessing.Queue() def newf(f, q, *args, **kwargs):