From 3a1eab73830b22bc682af32d3ee2aedff3b546a0 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Sat, 7 Jan 2012 01:31:24 +0100 Subject: [PATCH] Remove a stray debug output that slipped in the previous commit. Signed-off-by: Sebastian Spaeth --- offlineimap/folder/IMAP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/folder/IMAP.py b/offlineimap/folder/IMAP.py index 7fde40b..93f0c56 100644 --- a/offlineimap/folder/IMAP.py +++ b/offlineimap/folder/IMAP.py @@ -570,7 +570,7 @@ class IMAPFolder(BaseFolder): typ, resp = imapobj.response('APPENDUID') if resp == [None]: self.ui.warn("Server supports UIDPLUS but got no APPENDUID " - "appending a message. %s" % imapobj._get_untagged_response('APPENDUID', True)) + "appending a message.") return 0 uid = long(resp[-1].split(' ')[1])