Shorten overlong line, fix indent.

This commit is contained in:
Patrick Hensley 2014-10-17 16:20:22 -04:00
parent f95c8c4dfc
commit d328a836fc
1 changed files with 2 additions and 2 deletions

View File

@ -569,8 +569,8 @@ class Client(requests.Session):
# start the command # start the command
cmd_id = res.json().get('Id') cmd_id = res.json().get('Id')
res = self._post_json(self._url('/exec/{0}/start'.format(cmd_id)), data=data, res = self._post_json(self._url('/exec/{0}/start'.format(cmd_id)),
stream=stream) data=data, stream=stream)
self._raise_for_status(res) self._raise_for_status(res)
if stream: if stream:
return self._multiplexed_socket_stream_helper(res) return self._multiplexed_socket_stream_helper(res)