Skip to content
Snippets Groups Projects
Commit 5ce6daa6 authored by Matt Harbison's avatar Matt Harbison
Browse files

ancestor: drop an unused local variable assignment

Caught by PyCharm.

Differential Revision: https://phab.mercurial-scm.org/D7736
parent 6c201f0d
No related branches found
No related tags found
No related merge requests found
......@@ -331,7 +331,7 @@
Result does not include the null revision."""
self._parentrevs = pfunc
self._initrevs = revs = [r for r in revs if r >= stoprev]
self._initrevs = [r for r in revs if r >= stoprev]
self._stoprev = stoprev
self._inclusive = inclusive
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment