changeset 20203:509768fc7542

obsolete: fix bad comment We cannot afford such extra "with" they are far too pricy.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Mon, 23 Dec 2013 13:32:03 -0800
parents a6014018ec28
children b0c14c5d44b1
files mercurial/obsolete.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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]: