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

mq: move traceback dump into THGDEBUG conditional

Changeset 82554d318f50

Parent 17eda9461352

by Steve Borho

Changes to one file · Browse files at 82554d318f50 Showing diff from parent 17eda9461352 Diff from another changeset...

 
448
449
450
451
452
 
 
 
453
454
455
 
448
449
450
 
 
451
452
453
454
455
456
@@ -448,8 +448,9 @@
  self._reload()   except Exception, e:   self.showMessage.emit(hglib.tounicode(str(e))) - import traceback - traceback.print_exc() + if 'THGDEBUG' in os.environ: + import traceback + traceback.print_exc()   finally:   self.refreshing = False