mercurial/util.py
changeset 15720 3bcfea777efc
parent 15719 1dd60426b061
child 16360 e5788269741a
--- a/mercurial/util.py	Sat Dec 24 00:51:14 2011 +0900
+++ b/mercurial/util.py	Sat Dec 24 00:52:06 2011 +0900
@@ -646,7 +646,8 @@
 
         found = find(part, contents)
         if not found:
-            # retry once for the corner case: add files after dir walking
+            # retry "once per directory" per "dirstate.walk" which
+            # may take place for each patches of "hg qpush", for example
             contents = os.listdir(dir)
             _fspathcache[dir] = contents
             found = find(part, contents)