Mercurial > hg-stable
changeset 15720:3bcfea777efc
icasefs: rewrite comment to explain situtation precisely
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Sat, 24 Dec 2011 00:52:06 +0900 |
parents | 1dd60426b061 |
children | 9e6a13c2aeb9 |
files | mercurial/util.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)