From 9cff56dae8b80a00622d0f33235e11e66bee23c1 Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Thu, 29 Oct 2009 13:23:12 +0000 Subject: [PATCH] Don't ignore KeyboardInterrupt either in process_unchecked Signed-off-by: Chris Lamb --- dak/process_unchecked.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 5463f1a6..db29ac42 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -507,7 +507,7 @@ def process_it(changes_file): action(u) - except SystemExit: + except (SystemExit, KeyboardInterrupt): raise except: -- 2.39.5