Submitter | phabricator |
---|---|
Date | March 1, 2018, 6:49 p.m. |
Message ID | <differential-rev-PHID-DREV-tjvs76s7gtcrimtxbfz7-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/28568/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/narrow/narrowchangegroup.py b/hgext/narrow/narrowchangegroup.py --- a/hgext/narrow/narrowchangegroup.py +++ b/hgext/narrow/narrowchangegroup.py @@ -44,7 +44,7 @@ source): matcher = _cgmatcher(self) if matcher: - changedfiles = filter(matcher, changedfiles) + changedfiles = list(filter(matcher, changedfiles)) if getattr(self, 'is_shallow', False): # See comment in generate() for why this sadness is a thing. mfdicts = self._mfdicts