/offlineimap/head: changeset 224

Fix syntax
This commit is contained in:
jgoerzen 2002-08-09 02:53:57 +01:00
parent 6c1d5a0d27
commit 5feb54b493

View File

@ -119,14 +119,14 @@ class MaildirRepository(BaseRepository):
self.debug(" skipping this entry (not a directory)") self.debug(" skipping this entry (not a directory)")
# Not a directory -- not a folder. # Not a directory -- not a folder.
continue continue
foldername = dirname
if extension != None:
foldername = os.path.join(extension, dirname)
if (os.path.isdir(os.path.join(fullname, 'cur')) and if (os.path.isdir(os.path.join(fullname, 'cur')) and
os.path.isdir(os.path.join(fullname, 'new')) and os.path.isdir(os.path.join(fullname, 'new')) and
os.path.isdir(os.path.join(fullname, 'tmp'))): os.path.isdir(os.path.join(fullname, 'tmp'))):
# This directory has maildir stuff -- process # This directory has maildir stuff -- process
self.debug(" This is a maildir folder.") self.debug(" This is a maildir folder.")
foldername = dirname
if extension != None:
foldername = os.path.join(extension, dirname)
self.debug(" foldername = %s" % foldername) self.debug(" foldername = %s" % foldername)