From 9656058a351237bbfdba4f9f93dae1bbf093d7e4 Mon Sep 17 00:00:00 2001 From: Marek Siarkowicz Date: Sun, 14 Jun 2015 13:26:59 +0200 Subject: Ignore KeyboardInterrupt. --- ParrotZikTray | 7 +++++-- 1 file 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 -- cgit v1.2.1