##// END OF EJS Templates
basectx: change _node to node() in hex...
Sean Farley -
r19544:74924fa3 default
parent child Browse files
Show More
@@ -43,7 +43,7 class basectx(object):
43 43 def node(self):
44 44 return self._node
45 45 def hex(self):
46 return hex(self._node)
46 return hex(self.node())
47 47
48 48 class changectx(basectx):
49 49 """A changecontext object makes access to data related to a particular
General Comments 0
You need to be logged in to leave comments. Login now