Fix regression introduced in 0f40ca4799

We have no variable "fullname", it must have been slipped in
unintentionally.

Blame commit:
	0f40ca4799 more style consistency

Signed-off-by: Eygene Ryabinkin <rea@codelabs.ru>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Eygene Ryabinkin 2015-01-12 19:15:06 +03:00 committed by Nicolas Sebrecht
parent d08f6d15c2
commit 6fc9c36014
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ class IMAPFolder(BaseFolder):
#Do the APPEND
try:
(typ, dat) = imapobj.append(fullname,
(typ, dat) = imapobj.append(self.getfullname(),
imaputil.flagsmaildir2imap(flags), date, content)
# This should only catch 'NO' responses since append()
# will raise an exception for 'BAD' responses: