Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable datamine: use Abort provided by hglib

Changeset 22607a1c6d40

Parent 58dac77b1817

by Steve Borho

Changes to one file · Browse files at 22607a1c6d40 Showing diff from parent 58dac77b1817 Diff from another changeset...

 
448
449
450
451
 
452
453
454
 
448
449
450
 
451
452
453
454
@@ -448,7 +448,7 @@
  def threadfunc(q, *args):   try:   hglib.hgcmd_toq(q, *args) - except util.Abort, e: + except hglib.Abort, e:   self.stbar.set_status_text(_('Abort: %s') % str(e))     thread = thread2.Thread(target=threadfunc, args=args)