From bc61f179c04a7d5ae5e63ecc97fdb0e625edbe66 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 11 Sep 2018 12:53:54 +0200 Subject: [PATCH] Fix typo --- 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 d78a1f4225ec16..8e8d03253e54d3 100644 --- a/homeassistant/auth/auth_store.py +++ b/homeassistant/auth/auth_store.py @@ -235,7 +235,7 @@ async def _async_load(self) -> None: 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