comparison mercurial/context.py @ 21681:96025d1e184f

memctx: remove unknown since it is now inherited
author Sean Farley <sean.michael.farley@gmail.com>
date Wed, 28 May 2014 20:03:19 -0500
parents a9d5f67c7a6e
children b657ada9986c
comparison
equal deleted inserted replaced
21680:a9d5f67c7a6e 21681:96025d1e184f
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 unknown(self):
1582 return self._status[4]
1583 def ignored(self): 1581 def ignored(self):
1584 return self._status[5] 1582 return self._status[5]
1585 def clean(self): 1583 def clean(self):
1586 return self._status[6] 1584 return self._status[6]
1587 def branch(self): 1585 def branch(self):