forked from loafle/openapi-generator-original
[Python][Flask] Upgraded connxion to 1.1.15 (now supports multi collection format arrays) (#6463)
* [Python][Flask] Upgraded connxion to 1.1.15 (now supports multi collection format arrays) * Was modified by ./bin/python-petstore.sh
This commit is contained in:
parent
f6787539c0
commit
a6d6432e6d
@ -1,4 +1,4 @@
|
||||
connexion == 1.1.9
|
||||
connexion == 1.1.15
|
||||
python_dateutil == 2.6.0
|
||||
{{#supportPython2}}
|
||||
typing == 3.5.2.2
|
||||
|
@ -141,7 +141,7 @@ class RESTClientObject(object):
|
||||
url += '?' + urlencode(query_params)
|
||||
if re.search('json', headers['Content-Type'], re.IGNORECASE):
|
||||
request_body = None
|
||||
if body:
|
||||
if body is not None:
|
||||
request_body = json.dumps(body)
|
||||
r = self.pool_manager.request(method, url,
|
||||
body=request_body,
|
||||
|
@ -1,3 +1,3 @@
|
||||
connexion == 1.1.9
|
||||
connexion == 1.1.15
|
||||
python_dateutil == 2.6.0
|
||||
setuptools >= 21.0.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user