From c1cc221cb695aafb12edb1682e311501c558bb42 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Wed, 7 Nov 2012 15:49:08 -0500 Subject: [PATCH] Use a new-style class for HumbugAPI (imported from commit a88366e0129dadb40b058ddd0ede64db3b6b206f) --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index 67d56ec..a8e00a1 100644 --- a/common.py +++ b/common.py @@ -33,7 +33,7 @@ import os # Older versions don't provide the 'json' attribute on responses. assert(requests.__version__ > '0.12') -class HumbugAPI(): +class HumbugAPI(object): def __init__(self, email, api_key=None, api_key_file=None, verbose=False, retry_on_errors=True, site="https://humbughq.com", client="API"):