Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

history: remove mercurial.node import

Changeset 091020a06c59

Parent 0a7b24a2cee9

by Steve Borho

Changes to one file · Browse files at 091020a06c59 Showing diff from parent 0a7b24a2cee9 Diff from another changeset...

 
11
12
13
14
15
16
17
 
152
153
154
155
 
156
157
158
 
11
12
13
 
14
15
16
 
151
152
153
 
154
155
156
157
@@ -11,7 +11,6 @@
 import gobject  import re  from mercurial import util -from mercurial.node import short  from mercurial.hgweb import webutil  from thgutil import hglib   @@ -152,7 +151,7 @@
    revision = (None, node, revid, None, sumstr,   author, date, None, parents, wc_parent, head, taglist, - color, short(node)) + color, str(ctx))   self.revisions[revid] = revision   self.branch_names[revid] = branchstr   else: