##// END OF EJS Templates
ancestor: drop an unused local variable assignment...
Matt Harbison -
r44420:5ce6daa6 default
parent child Browse files
Show More
@@ -331,7 +331,7 b' class lazyancestors(object):'
331 331
332 332 Result does not include the null revision."""
333 333 self._parentrevs = pfunc
334 self._initrevs = revs = [r for r in revs if r >= stoprev]
334 self._initrevs = [r for r in revs if r >= stoprev]
335 335 self._stoprev = stoprev
336 336 self._inclusive = inclusive
337 337
General Comments 0
You need to be logged in to leave comments. Login now