mercurial/graphmod.py
changeset 23006 bb1bd9ee323d
parent 22878 890e874cacb6
child 23564 f7ce0837eefd
--- a/mercurial/graphmod.py	Sat Oct 11 01:39:20 2014 -0700
+++ b/mercurial/graphmod.py	Wed Oct 08 02:43:51 2014 -0700
@@ -37,11 +37,10 @@
     lowestrev = revs.min()
     gpcache = {}
 
-    knownrevs = revs
     for rev in revs:
         ctx = repo[rev]
         parents = sorted(set([p.rev() for p in ctx.parents()
-                              if p.rev() in knownrevs]))
+                              if p.rev() in revs]))
         mpars = [p.rev() for p in ctx.parents() if
                  p.rev() != nullrev and p.rev() not in parents]