This repository was archived by the owner on Aug 27, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
custom_components/authenticated Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11"""
22A platform which allows you to get information
3- about successfull logins to Home Assistant.
3+ about successful logins to Home Assistant.
44For more details about this component, please refer to the documentation at
55https://github.com/custom-components/authenticated
66"""
@@ -184,14 +184,14 @@ def update(self):
184184 continue
185185 elif new > stored :
186186 updated = True
187- _LOGGER .info ("New successfull login from known IP (%s)" , access )
187+ _LOGGER .info ("New successful login from known IP (%s)" , access )
188188 ipaddress .prev_used_at = ipaddress .last_used_at
189189 ipaddress .last_used_at = tokens [access ]["last_used_at" ]
190190 except Exception : # pylint: disable=broad-except
191191 pass
192192 else :
193193 updated = True
194- _LOGGER .warning ("New successfull login from unknown IP (%s)" , access )
194+ _LOGGER .warning ("New successful login from unknown IP (%s)" , access )
195195 accessdata = AuthenticatedData (access , tokens [access ])
196196 ipaddress = IPData (accessdata , users , self .provider )
197197 ipaddress .lookup ()
You can’t perform that action at this time.
0 commit comments