fix SyntaxWarning: assignment to None (bug #843890)

This commit is contained in:
Peter Poeml 2006-04-25 21:13:53 +00:00
parent 64d87da307
commit 05c599028e
1 changed files with 1 additions and 1 deletions

View File

@ -757,7 +757,7 @@ def add_status_headers(message):
# files in the maildir 'cur' directory are no longer new,
# they are the same as messages with 'Status: O' headers in mbox
(None, last_dir) = os.path.split(os.path.dirname(message.fp.name))
last_dir = os.path.basename(os.path.dirname(message.fp.name))
if last_dir == "cur":
status = status + "O"