Submitter | phabricator |
---|---|
Date | Oct. 14, 2019, 6:39 a.m. |
Message ID | <differential-rev-PHID-DREV-so3r24biwhunwpbhu5qr-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/42314/ |
State | Superseded |
Headers | show |
Comments
hooper added a comment. Looks good. REPOSITORY rHG Mercurial CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D7086/new/ REVISION DETAIL https://phab.mercurial-scm.org/D7086 To: martinvonz, #hg-reviewers Cc: hooper, mercurial-devel
Patch
diff --git a/hgext/fix.py b/hgext/fix.py --- a/hgext/fix.py +++ b/hgext/fix.py @@ -845,9 +845,7 @@ def affects(self, opts, fixctx, path): """Should this fixer run on the file at the given path and context?""" - return self._pattern is not None and scmutil.match( - fixctx, [self._pattern], opts - )(path) + return scmutil.match(fixctx, [self._pattern], opts)(path) def shouldoutputmetadata(self): """Should the stdout of this fixer start with JSON and a null byte?"""