Changeset 3a2a0b2 for skype/skyped.py
- Timestamp:
- 2008-02-23T02:24:14Z (17 years ago)
- Branches:
- master
- Children:
- 1fb0a30
- Parents:
- e79a94f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skyped.py
re79a94f r3a2a0b2 45 45 46 46 def eh(type, value, tb): 47 if type == KeyboardInterrupt: 48 sys.exit("Exiting.") 49 print_exception(type, value, tb) 50 sys.exit(1) 47 if type != KeyboardInterrupt: 48 print_exception(type, value, tb) 49 gobject.MainLoop().quit() 50 skype.skype.Client.Shutdown() 51 sys.exit("Exiting.") 51 52 52 53 sys.excepthook = eh
Note: See TracChangeset
for help on using the changeset viewer.