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

stable logview: fix exception handler in treemodel constructor

I swear this is the second time I've fixed this.

Fixes #726

Changeset 51f029e7f885

Parent 50af3738159b

by Steve Borho

Changes to one file · Browse files at 51f029e7f885 Showing diff from parent 50af3738159b Diff from another changeset...

 
59
60
61
62
 
63
64
65
 
59
60
61
 
62
63
64
65
@@ -59,7 +59,7 @@
  self.tagrevs = [repo[r].rev() for t, r in repo.tagslist()]   self.branchtags = repo.branchtags()   self.wcparents = [x.rev() for x in repo.parents()] - except hglib.Abort: + except util.Abort:   pass     def refresh(self):