##// END OF EJS Templates
basectx: move node from changectx
Sean Farley -
r19542:bd95621a default
parent child Browse files
Show More
@@ -40,6 +40,8 b' class basectx(object):'
40
40
41 def rev(self):
41 def rev(self):
42 return self._rev
42 return self._rev
43 def node(self):
44 return self._node
43
45
44 class changectx(basectx):
46 class changectx(basectx):
45 """A changecontext object makes access to data related to a particular
47 """A changecontext object makes access to data related to a particular
@@ -210,8 +212,6 b' class changectx(basectx):'
210 def manifestnode(self):
212 def manifestnode(self):
211 return self._changeset[0]
213 return self._changeset[0]
212
214
213 def node(self):
214 return self._node
215 def hex(self):
215 def hex(self):
216 return hex(self._node)
216 return hex(self._node)
217 def user(self):
217 def user(self):
General Comments 0
You need to be logged in to leave comments. Login now