comparison mercurial/context.py @ 21674:c80ce9fa477e

memctx: remove date since it is now inherited
author Sean Farley <sean.michael.farley@gmail.com>
date Thu, 15 Aug 2013 15:07:29 -0500
parents dd4d6a449bf6
children 110e35f630fa
comparison
equal deleted inserted replaced
21673:dd4d6a449bf6 21674:c80ce9fa477e
1576 1576
1577 if editor: 1577 if editor:
1578 self._text = editor(self._repo, self, []) 1578 self._text = editor(self._repo, self, [])
1579 self._repo.savecommitmessage(self._text) 1579 self._repo.savecommitmessage(self._text)
1580 1580
1581 def date(self):
1582 return self._date
1583 def description(self): 1581 def description(self):
1584 return self._text 1582 return self._text
1585 def files(self): 1583 def files(self):
1586 return self.modified() 1584 return self.modified()
1587 def modified(self): 1585 def modified(self):