##// 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 44 source):
45 45 matcher = _cgmatcher(self)
46 46 if matcher:
47 changedfiles = filter(matcher, changedfiles)
47 changedfiles = list(filter(matcher, changedfiles))
48 48 if getattr(self, 'is_shallow', False):
49 49 # See comment in generate() for why this sadness is a thing.
50 50 mfdicts = self._mfdicts
General Comments 0
You need to be logged in to leave comments. Login now