# HG changeset patch # User Pierre-Yves David # Date 2013-12-23 21:32:03 # Node ID 509768fc75426bf2aff9dad128b0b40ce490b126 # Parent a6014018ec2846070e5e8eb3c4235199df686258 obsolete: fix bad comment We cannot afford such extra "with" they are far too pricy. diff --git a/mercurial/obsolete.py b/mercurial/obsolete.py --- a/mercurial/obsolete.py +++ b/mercurial/obsolete.py @@ -447,7 +447,7 @@ def allsuccessors(obsstore, nodes, ignor current = remaining.pop() yield current for mark in obsstore.successors.get(current, ()): - # ignore marker flagged with with specified flag + # ignore marker flagged with specified flag if mark[2] & ignoreflags: continue for suc in mark[1]: