Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable mq: do not emit backtrace unless debugging (closes #266)

Changeset 611db252477e

Parent b715e8a03ac7

by Steve Borho

Changes to one file · Browse files at 611db252477e Showing diff from parent b715e8a03ac7 Diff from another changeset...

 
703
704
705
706
707
 
 
 
708
709
710
 
703
704
705
 
 
706
707
708
709
710
711
@@ -703,8 +703,9 @@
  self._refreshFileListWidget()   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   if self.reselectFileItem: