##// 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 b' class basectx(object):'
43 def node(self):
43 def node(self):
44 return self._node
44 return self._node
45 def hex(self):
45 def hex(self):
46 return hex(self._node)
46 return hex(self.node())
47
47
48 class changectx(basectx):
48 class changectx(basectx):
49 """A changecontext object makes access to data related to a particular
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