Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

tags: use LookupError from hglib

Changeset fcb23a0e6416

Parent 632b32844ac1

by Steve Borho

Changes to one file · Browse files at fcb23a0e6416 Showing diff from parent 632b32844ac1 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​tags.py Stacked
 
33
34
35
36
 
37
38
39
 
33
34
35
 
36
37
38
39
@@ -33,7 +33,7 @@
  try:   hn = hexfunc(n)   r, c = repo.changelog.rev(n), hexfunc(n) - except revlog.LookupError: + except LookupError:   r, c = "?", hn     taglist.append((t, r, c))