Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.

Commit 5d4e9a6

Browse files
mikeageludeeus
authored andcommitted
Fix spelling mistake ('successful' has one l) (#52)
The PNG should also be recreated
1 parent 4db29ab commit 5d4e9a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

custom_components/authenticated/sensor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
A platform which allows you to get information
3-
about successfull logins to Home Assistant.
3+
about successful logins to Home Assistant.
44
For more details about this component, please refer to the documentation at
55
https://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()

0 commit comments

Comments
 (0)