# HG changeset patch # User Sean Farley # Date 2018-06-12 03:48:47 # Node ID 6c8ceebce309fbb974f112b6535123edc54fddf1 # Parent 7375a9ab014943ee6265634bcb899fb4abe98cca context: fix typo in workingcommitctx This was probably a copy pasta error in 745e3b485632. Refactoring memctx code exposed this bug. diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -2132,8 +2132,8 @@ class workingcommitctx(workingctx): """ def __init__(self, repo, changes, text="", user=None, date=None, extra=None): - super(workingctx, self).__init__(repo, text, user, date, extra, - changes) + super(workingcommitctx, self).__init__(repo, text, user, date, extra, + changes) def _dirstatestatus(self, match, ignored=False, clean=False, unknown=False): """Return matched files only in ``self._status``