do not quit on ctrl+c, behaviour is annoying

This commit is contained in:
Lionel Dricot 2022-02-25 14:36:46 +01:00
parent edb71471dc
commit 7a05e5514e
1 changed files with 1 additions and 2 deletions

View File

@ -3570,8 +3570,7 @@ def main():
try:
gc.cmdloop()
except KeyboardInterrupt:
print("\n")
gc.do_quit(line)
print("")
if __name__ == '__main__':
main()