Use ISO 8601 date format in the day_change plugin
This commit is contained in:
parent
9661854611
commit
9d6acb0d7e
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ class Plugin(BasePlugin):
|
|||
self.api.add_timed_event(self.next_event)
|
||||
|
||||
def day_change(self):
|
||||
msg = datetime.date.today().strftime(_("Day changed to %x"))
|
||||
msg = _("Day changed to %s") % (datetime.date.today().isoformat())
|
||||
|
||||
for tab in self.core.tabs:
|
||||
if (isinstance(tab, tabs.MucTab) or
|
||||
|
|
Loading…
Reference in a new issue