# HG changeset patch # User Pierre-Yves David # Date 1387834323 28800 # Node ID 509768fc75426bf2aff9dad128b0b40ce490b126 # Parent a6014018ec2846070e5e8eb3c4235199df686258 obsolete: fix bad comment We cannot afford such extra "with" they are far too pricy. diff -r a6014018ec28 -r 509768fc7542 mercurial/obsolete.py --- a/mercurial/obsolete.py Sun Dec 29 13:54:04 2013 +0000 +++ b/mercurial/obsolete.py Mon Dec 23 13:32:03 2013 -0800 @@ -447,7 +447,7 @@ 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]: