Fixed indentations hopefully

This commit is contained in:
Ryan Turner 2015-11-09 00:11:11 -06:00
parent f3352546c6
commit a36b315927

View file

@ -58,11 +58,11 @@ class MjpegCamera(Camera):
with closing(requests.get(self._mjpeg_url,
auth=HTTPBasicAuth(self._username,
self._password),
stream=True)) as response:
stream=True)) as response:
return process_response(response)
else:
with closing(requests.get(self._mjpeg_url,
stream=True)) as response:
stream=True)) as response:
return process_response(response)
@property