diff --git a/offlineimap/folder/Gmail.py b/offlineimap/folder/Gmail.py index 968e23e..f81e1f2 100644 --- a/offlineimap/folder/Gmail.py +++ b/offlineimap/folder/Gmail.py @@ -1,6 +1,5 @@ # Gmail IMAP folder support -# Copyright (C) 2008 Riccardo Murri -# Copyright (C) 2002-2007 John Goerzen +# Copyright (C) 2002-2016 John Goerzen & contributors. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,6 +16,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import re +import six from sys import exc_info from offlineimap import imaputil, OfflineImapError @@ -24,8 +24,6 @@ from offlineimap import imaplibutil import offlineimap.accounts from .IMAP import IMAPFolder -import six - """Folder implementation to support features of the Gmail IMAP server.""" class GmailFolder(IMAPFolder):