From 0df758cb171748f8d6e0f3ece5e5c5e608f65b3e Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Sun, 14 Mar 2010 01:04:40 -0600 Subject: [PATCH] (whoops, forgot to actually return the data) --- src/mw/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mw/api.py b/src/mw/api.py index 0946782..59a3947 100644 --- a/src/mw/api.py +++ b/src/mw/api.py @@ -47,7 +47,7 @@ class API(object): the_data = json.loads(data) if 'error' in the_data.keys(): raise APIError(the_data['error']['info']) - return + return the_data def limits(self, low, high): if self._high_limits == None: -- 2.30.2