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:
parent
5dc33409e3
commit
3ff37143b5
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user