##// 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 499 return self._changectx.date()
500 500 def files(self):
501 501 return self._changectx.files()
502 def description(self):
503 return self._changectx.description()
502 504
503 505 class filectx(basefilectx):
504 506 """A filecontext object makes access to data related to a particular
@@ -555,8 +557,6 b' class filectx(basefilectx):'
555 557 return filectx(self._repo, self._path, fileid=fileid,
556 558 filelog=self._filelog)
557 559
558 def description(self):
559 return self._changectx.description()
560 560 def branch(self):
561 561 return self._changectx.branch()
562 562 def extra(self):
General Comments 0
You need to be logged in to leave comments. Login now