Changeset 6363
- Timestamp:
- 05/26/06 15:26:53 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/gtkexcepthook.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gtkexcepthook.py
r4700 r6363 28 28 29 29 import sys 30 import os 30 31 import traceback 31 32 import threading … … 103 104 _exception_in_progress.release() 104 105 105 if not sys.stderr.isatty(): # gdb/kdm etc if we use startx this is not True 106 # gdb/kdm etc if we use startx this is not True 107 if os.name == 'nt' or not sys.stderr.isatty(): 106 108 #FIXME: maybe always show dialog? 107 109 _excepthook_save = sys.excepthook
