Fix auth frontend

pull/2063/head
Paulus Schoutsen 2016-05-15 02:23:21 -07:00
parent 5aa0158761
commit de5533e3c2
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ class IndexView(HomeAssistantView):
if self.hass.config.api.api_password is None:
auth = 'no_password_set'
else:
request.values.get('api_password', '')
auth = request.values.get('api_password', '')
template = self.templates.get_template('index.html')