[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:
Lance Hannestad 2017-09-10 19:23:38 -07:00 committed by wing328
parent f6787539c0
commit a6d6432e6d
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
connexion == 1.1.9
connexion == 1.1.15
python_dateutil == 2.6.0
{{#supportPython2}}
typing == 3.5.2.2

View File

@ -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,

View File

@ -1,3 +1,3 @@
connexion == 1.1.9
connexion == 1.1.15
python_dateutil == 2.6.0
setuptools >= 21.0.0