This commit is contained in:
2024-12-07 23:12:56 +01:00
parent b82118f8b2
commit 9aafc9b37c
5 changed files with 60 additions and 3 deletions

View File

@ -95,4 +95,8 @@ def main():
print("Invalid command. Use --help for usage information.")
if __name__ == '__main__':
main()
try:
main()
except KeyboardInterrupt:
sys.exit(1)