diff options
Diffstat (limited to '')
-rwxr-xr-x | ParrotZikTray | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ParrotZikTray b/ParrotZikTray index 7056f92..faaa4a3 100755 --- a/ParrotZikTray +++ b/ParrotZikTray @@ -448,5 +448,8 @@ class ParrotZikVersion2Interface(ParrotZikBaseInterface): if __name__ == "__main__": - indicator = ParrotZikIndicator() - indicator.main() + try: + indicator = ParrotZikIndicator() + indicator.main() + except KeyboardInterrupt: + pass |