From c014f2679d915e8554f9561ea3bb310ea97c913f Mon Sep 17 00:00:00 2001 From: davi5e Date: Thu, 16 Mar 2017 09:55:11 -0300 Subject: [PATCH] Update gmail.py Adding 'object' to "class Gmail(object):" so another class can successfully inherit gmail and use super() without errors. --- gmail/gmail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gmail/gmail.py b/gmail/gmail.py index 7fb09e1..b0a7984 100644 --- a/gmail/gmail.py +++ b/gmail/gmail.py @@ -5,7 +5,7 @@ from utf import encode as encode_utf7, decode as decode_utf7 from exceptions import * -class Gmail(): +class Gmail(object): # GMail IMAP defaults GMAIL_IMAP_HOST = 'imap.gmail.com' GMAIL_IMAP_PORT = 993