##// END OF EJS Templates
context: fix typo in workingcommitctx...
Sean Farley -
r39747:6c8ceebc default
parent child Browse files
Show More
@@ -2132,8 +2132,8 b' class workingcommitctx(workingctx):'
2132 2132 """
2133 2133 def __init__(self, repo, changes,
2134 2134 text="", user=None, date=None, extra=None):
2135 super(workingctx, self).__init__(repo, text, user, date, extra,
2136 changes)
2135 super(workingcommitctx, self).__init__(repo, text, user, date, extra,
2136 changes)
2137 2137
2138 2138 def _dirstatestatus(self, match, ignored=False, clean=False, unknown=False):
2139 2139 """Return matched files only in ``self._status``
General Comments 0
You need to be logged in to leave comments. Login now