From 0af5102faef0aa4931666f3665b9c67601f1455d Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 14 Dec 2025 13:25:31 -0300 Subject: [PATCH] bugfix: capturo interrupion por teclado para no mostrar stack trace --- src/git_flow/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/git_flow/main.py b/src/git_flow/main.py index 0281c81..0dadbce 100755 --- a/src/git_flow/main.py +++ b/src/git_flow/main.py @@ -79,6 +79,9 @@ def main(): command.error(str(e)) except Exception as e: command.error("Ocurrió un error inesperado: " + str(e)) + except KeyboardInterrupt as e: + print() + command.error("Ejecución abortada") return