Finally fix the stupid LocalStatus folder bug, I really hope!

Noted thie code:

    statusfolder =
    statusrepos.getfolder(remotefolder.getvisiblename().\
                                         replace(remoterepos.getsep(),
                                                 statusrepos.getsep()))

in accounts.py.  Should have been using the sep of the LocalStatus all
along.

refs deb#479798, #68
This commit is contained in:
John Goerzen 2008-05-10 21:08:05 -05:00
parent 5dc33409e3
commit 3ff37143b5
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class BaseRepository(CustomConfig.ConfigHelperMixin):
if not key in desthash:
dest.makefolder(key)
for copyfolder in copyfolders:
copyfolder.makefolder(key.replace(dest.getsep(), src.getsep()))
copyfolder.makefolder(key.replace(dest.getsep(), copyfolder.getsep()))
#
# Find deleted folders.