summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/fedpkg.py5
1 files changed, 4 insertions, 1 deletions
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