From: Ian Weller Date: Sun, 14 Mar 2010 07:04:40 +0000 (-0600) Subject: (whoops, forgot to actually return the data) X-Git-Url: https://projects.mako.cc/source/mw/commitdiff_plain/0df758cb171748f8d6e0f3ece5e5c5e608f65b3e?hp=a3beb96fcd7fb3397867e72f842cc6784c689a82 (whoops, forgot to actually return the data) --- 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: