From 4e3faf61089df91eb46df751a8540654a48ad996 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 11 Sep 2018 12:55:05 +0200 Subject: [PATCH] Fix typo (#16556) --- homeassistant/auth/auth_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/auth/auth_store.py b/homeassistant/auth/auth_store.py index d78a1f4225e..8e8d03253e5 100644 --- a/homeassistant/auth/auth_store.py +++ b/homeassistant/auth/auth_store.py @@ -235,7 +235,7 @@ class AuthStore: continue token_type = rt_dict.get('token_type') if token_type is None: - if rt_dict['clinet_id'] is None: + if rt_dict['client_id'] is None: token_type = models.TOKEN_TYPE_SYSTEM else: token_type = models.TOKEN_TYPE_NORMAL