Skip to content

Commit

Permalink
Finally fix the stupid LocalStatus folder bug, I really hope!
Browse files Browse the repository at this point in the history
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, OfflineIMAP#68
  • Loading branch information
jgoerzen committed May 11, 2008
1 parent 5dc3340 commit 3ff3714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion offlineimap/repository/Base.py
Expand Up @@ -154,7 +154,7 @@ def syncfoldersto(self, dest, copyfolders):
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.
Expand Down

0 comments on commit 3ff3714

Please sign in to comment.