strip off root file name only once for missing files

This commit is contained in:
Gerhard Weis 2010-03-20 15:07:37 +10:00
parent 4aa1d845af
commit 8958823457

View File

@ -96,7 +96,7 @@ class RevisionData(object):
new = [p + f for f, k in svn.list_files(dir, r) if k == 'f']
files.update(new)
else:
files.add(p[len(root):])
files.add(p)
i = 1
self.ui.note('\nfetching files...\n')