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:
Sebastian Spaeth 2011-06-22 21:38:19 +02:00 committed by Nicolas Sebrecht
parent 994a134133
commit b40d02e801

View File

@ -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