From cc15ec128745cd663b93fbc12c114999a220c53d Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 17 Aug 2010 16:36:37 -0700 Subject: Catch double ^c's from build. RHBZ #620465 --- src/fedpkg.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/fedpkg.py b/src/fedpkg.py index ae829fa..2d01681 100755 --- a/src/fedpkg.py +++ b/src/fedpkg.py @@ -1068,4 +1068,7 @@ packages will be built sequentially. log.addHandler(streamhandler) # Run the necessary command - args.command(args) + try: + args.command(args) + except KeyboardInterrupt: + pass -- cgit