From 593542b5ed80fa211bc60bd1466e681e5d699809 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 29 Oct 2012 22:44:29 -0400 Subject: [PATCH] Fixed ApiRequest typo (def -> class) --- 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 ea9dee31a..1b1b15027 100644 --- a/python_apps/api_clients/api_client.py +++ b/python_apps/api_clients/api_client.py @@ -75,7 +75,7 @@ class ApcUrl(object): if '%%' in self.base_url: raise IncompleteUrl(self.base_url) else: return self.base_url -def ApiRequest(object): +class ApiRequest(object): def __init__(self, name, url): self.name = name self.url = url