Don't traceback on Ctrl+C

This commit is contained in:
Dan Williams 2006-04-27 12:20:42 -04:00
parent 9bd898a5b2
commit c4781fe8e3

View File

@ -296,4 +296,7 @@ def main():
activityContainer = ActivityContainer(service, session_bus)
try:
gtk.main()
except KeyboardInterrupt:
pass