pollen: Fix typo
This commit is contained in:
parent
2516b8d56c
commit
7940aaad6c
@ -114,7 +114,7 @@ class PollenModule(BaseModule):
|
|||||||
Marks a date as being sent to a user. Also ensures that
|
Marks a date as being sent to a user. Also ensures that
|
||||||
there are at maximum 7 days in this list
|
there are at maximum 7 days in this list
|
||||||
"""
|
"""
|
||||||
date_ints = [int(date.replace("-", "") for date in new_dates)]
|
date_ints = [int(date.replace("-", "")) for date in new_dates]
|
||||||
oldest_date = max(date_ints)
|
oldest_date = max(date_ints)
|
||||||
self._oldest_date_notified[jid] = oldest_date
|
self._oldest_date_notified[jid] = oldest_date
|
||||||
self._stm.set_data("oldest_date_notified", self._oldest_date_notified)
|
self._stm.set_data("oldest_date_notified", self._oldest_date_notified)
|
||||||
|
Loading…
Reference in New Issue
Block a user