# HG changeset patch # User Sean Farley # Date 1376597969 18000 # Node ID 51df9879b7f9a0384428b43912b84115e3e66f6c # Parent 428af94bbccd34949468199623d90f7b1e04980a memctx: remove flags since it is now inherited commitablectx has a much more robust implementation of flags() so we will use that instead of just blindly calling the flags function for the given path. diff -r 428af94bbccd -r 51df9879b7f9 mercurial/context.py --- a/mercurial/context.py Thu Aug 15 15:17:05 2013 -0500 +++ b/mercurial/context.py Thu Aug 15 15:19:29 2013 -0500 @@ -1578,9 +1578,6 @@ self._text = editor(self._repo, self, []) self._repo.savecommitmessage(self._text) - def flags(self, f): - return self[f].flags() - def parents(self): """return contexts for each parent changeset""" return self._parents