Skip to content

Commit

Permalink
Fix typo (#16556)
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob authored Sep 11, 2018
1 parent 9583947 commit 4e3faf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/auth/auth_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4e3faf6

Please sign in to comment.