repository/Maildir.py: Fix typo 'sudir'
sudir->subdir in a debug statement. Thanks ccxCZ on IRC for the heads up. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
994a134133
commit
b40d02e801
@ -100,7 +100,7 @@ class MaildirRepository(BaseRepository):
|
|||||||
except OSError, e:
|
except OSError, e:
|
||||||
if e.errno == 17 and os.path.isdir(full_path):
|
if e.errno == 17 and os.path.isdir(full_path):
|
||||||
self.debug("makefolder: '%s' already has subdir %s" %
|
self.debug("makefolder: '%s' already has subdir %s" %
|
||||||
(foldername, sudir))
|
(foldername, subdir))
|
||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
# Invalidate the folder cache
|
# Invalidate the folder cache
|
||||||
|
Loading…
Reference in New Issue
Block a user