From a71bebc35b304a575672d44e9191ce903be6a0eb Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 29 Oct 2012 23:38:33 -0400 Subject: [PATCH] Fixed typo in RequestProvider definition --- python_apps/api_clients/api_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/api_clients/api_client.py b/python_apps/api_clients/api_client.py index 1b1b15027..6c2d1cf36 100644 --- a/python_apps/api_clients/api_client.py +++ b/python_apps/api_clients/api_client.py @@ -84,7 +84,7 @@ class ApiRequest(object): response = urllib2.urlopen(final_url).read() return response -def RequestProvider(object): +class RequestProvider(object): """ Creates the available ApiRequest instance that can be read from a config file """ def __init__(self, cfg):