##// END OF EJS Templates
basefilectx: move description from filectx
Sean Farley -
r19595:bb6fd069 default
parent child Browse files
Show More
@@ -499,6 +499,8 b' class basefilectx(object):'
499 return self._changectx.date()
499 return self._changectx.date()
500 def files(self):
500 def files(self):
501 return self._changectx.files()
501 return self._changectx.files()
502 def description(self):
503 return self._changectx.description()
502
504
503 class filectx(basefilectx):
505 class filectx(basefilectx):
504 """A filecontext object makes access to data related to a particular
506 """A filecontext object makes access to data related to a particular
@@ -555,8 +557,6 b' class filectx(basefilectx):'
555 return filectx(self._repo, self._path, fileid=fileid,
557 return filectx(self._repo, self._path, fileid=fileid,
556 filelog=self._filelog)
558 filelog=self._filelog)
557
559
558 def description(self):
559 return self._changectx.description()
560 def branch(self):
560 def branch(self):
561 return self._changectx.branch()
561 return self._changectx.branch()
562 def extra(self):
562 def extra(self):
General Comments 0
You need to be logged in to leave comments. Login now