Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

thg: catch NotImplementedError on exit

We'll be seeing a lot of this :)

Changeset a8ab8ecc7471

Parent 79af6205f5c8

by Steve Borho

Changes to one file · Browse files at a8ab8ecc7471 Showing diff from parent 79af6205f5c8 Diff from another changeset...

Change 1 of 1 Show Entire File thg Stacked
 
39
40
41
42
 
 
43
44
45
 
39
40
41
 
42
43
44
45
46
@@ -39,7 +39,8 @@
 _ui = ui.ui()  capt = _ui.configbool('tortoisehg', 'stderrcapt', True)   -errors = ('Traceback', 'TypeError', 'NameError', 'AttributeError') +errors = ('Traceback', 'TypeError', 'NameError', 'AttributeError', + 'NotImplementedError')    if not capt or 'THGDEBUG' in os.environ or '--profile' in sys.argv:   sys.exit(tortoisehg.hgqt.run.dispatch(sys.argv[1:]))