From a36b315927eabf55e1fc184af5e6be1ab2b7d47d Mon Sep 17 00:00:00 2001 From: Ryan Turner Date: Mon, 9 Nov 2015 00:11:11 -0600 Subject: [PATCH] Fixed indentations hopefully --- homeassistant/components/camera/mjpeg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/camera/mjpeg.py b/homeassistant/components/camera/mjpeg.py index 12a2bbcc49e..6da1fae7474 100644 --- a/homeassistant/components/camera/mjpeg.py +++ b/homeassistant/components/camera/mjpeg.py @@ -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