folder/Gmail.py Removed extra backslash
This backslash could be removed.
This commit is contained in:
parent
6be58c297d
commit
e3533e7fa9
@ -154,9 +154,8 @@ class GmailFolder(IMAPFolder):
|
||||
# e.g.: {'X-GM-LABELS': '("Webserver (RW.net)" "\\Inbox" GInbox)', 'FLAGS': '(\\Seen)', 'UID': '275440'}
|
||||
options = imaputil.flags2hash(messagestr)
|
||||
if not 'UID' in options:
|
||||
self.ui.warn('No UID in message with options %s' % \
|
||||
str(options),
|
||||
minor=1)
|
||||
self.ui.warn('No UID in message with options %s' %
|
||||
str(options), minor=1)
|
||||
else:
|
||||
uid = int(options['UID'])
|
||||
self.messagelist[uid] = self.msglist_item_initializer(uid)
|
||||
|
Loading…
Reference in New Issue
Block a user