icasefs: rewrite comment to explain situtation precisely
authorFUJIWARA Katsunori <foozy@lares.dti.ne.jp>
Sat, 24 Dec 2011 00:52:06 +0900
changeset 15720 3bcfea777efc
parent 15719 1dd60426b061
child 15724 9e6a13c2aeb9
icasefs: rewrite comment to explain situtation precisely
mercurial/util.py
--- 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)