Skip to content

Commit

Permalink
Month in the state should be lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Lindvig authored Jan 15, 2022
1 parent 82e0243 commit d256df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/time_date_dk/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def _update_internal_state(self):

self._adventsDates = self._getAdventsDates()

self._state = f'{ self._weekdayName} den { self._day }. { self._monthName } { self._year }'
self._state = f'{ self._weekdayName} den { self._day }. { self._monthName.lower() } { self._year }'

@callback
def point_in_time_listener(self, time_date):
Expand Down

0 comments on commit d256df8

Please sign in to comment.