##// END OF EJS Templates
py3: listify the return value of filter()...
Pulkit Goyal -
r36509:149c5af3 default
parent child Browse files
Show More
@@ -44,7 +44,7 b' def setup():'
44 source):
44 source):
45 matcher = _cgmatcher(self)
45 matcher = _cgmatcher(self)
46 if matcher:
46 if matcher:
47 changedfiles = filter(matcher, changedfiles)
47 changedfiles = list(filter(matcher, changedfiles))
48 if getattr(self, 'is_shallow', False):
48 if getattr(self, 'is_shallow', False):
49 # See comment in generate() for why this sadness is a thing.
49 # See comment in generate() for why this sadness is a thing.
50 mfdicts = self._mfdicts
50 mfdicts = self._mfdicts
General Comments 0
You need to be logged in to leave comments. Login now