comparison mercurial/context.py @ 21682:b657ada9986c

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