diff --git a/src/decman/app.py b/src/decman/app.py index 9fad6e9..50ee876 100644 --- a/src/decman/app.py +++ b/src/decman/app.py @@ -106,6 +106,9 @@ def main(): ) output.print_error("This may cause already completed operations to run again.") output.print_traceback() + except KeyboardInterrupt: + output.print_error("Interrupted by the user.") + failed = True finally: os.chdir(original_wd)