bugfix: capturo interrupion por teclado para no mostrar stack trace

This commit is contained in:
Jonathan Teran Carballo
2025-12-14 13:25:31 -03:00
parent 2a21922a63
commit 0af5102fae
+3
View File
@@ -79,6 +79,9 @@ def main():
command.error(str(e)) command.error(str(e))
except Exception as e: except Exception as e:
command.error("Ocurrió un error inesperado: " + str(e)) command.error("Ocurrió un error inesperado: " + str(e))
except KeyboardInterrupt as e:
print()
command.error("Ejecución abortada")
return return