Changeset 3971
- Timestamp:
- May 12, 2019 9:17:59 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpath.py
r3962 r3971 775 775 if GetConfigValue('debug'): 776 776 print ('Debug on: IPython: Exceptions and G2path.IPyBreak(); pdb: G2path.pdbBreak()') 777 sys.excepthook = exceptHook778 777 import pdb 779 778 global pdbBreak … … 783 782 global IPyBreak 784 783 IPyBreak = IPyBreak_base 784 if any('SPYDER' in name for name in os.environ): 785 print('Running from Spyder, skipping exception trapping') 786 else: 787 sys.excepthook = exceptHook 785 788 except: 786 789 pass
Note: See TracChangeset
for help on using the changeset viewer.