diff --git a/src/gajim.py b/src/gajim.py index 044c81cee..83484a666 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -2953,4 +2953,7 @@ if __name__ == '__main__': osx.init() Interface() - gtk.main() + try: + gtk.main() + except KeyboardInterrupt: + print >> sys.stderr, 'KeyboardInterrupt'