Fixed typo in RequestProvider definition
This commit is contained in:
parent
a33a1e6e2a
commit
a71bebc35b
|
@ -84,7 +84,7 @@ class ApiRequest(object):
|
||||||
response = urllib2.urlopen(final_url).read()
|
response = urllib2.urlopen(final_url).read()
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def RequestProvider(object):
|
class RequestProvider(object):
|
||||||
""" Creates the available ApiRequest instance that can be read from
|
""" Creates the available ApiRequest instance that can be read from
|
||||||
a config file """
|
a config file """
|
||||||
def __init__(self, cfg):
|
def __init__(self, cfg):
|
||||||
|
|
Loading…
Reference in New Issue