Преглед изворни кода

Make expired reminders last for a full day.

tags/v0.3
Ben Kurtovic пре 8 година
родитељ
комит
be6c272d18
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      earwigbot/commands/remind.py

+ 1
- 1
earwigbot/commands/remind.py Прегледај датотеку

@@ -472,7 +472,7 @@ class _Reminder(object):
"""Activate the reminder for the user."""
self._cmdobj.reply(self._data, self.message)
self._cmdobj.unstore_reminder(self.id)
self.end = time.time() + 60
self.end = time.time() + (60 * 60 * 24)
self._expired = True

def _finalize(self):


Loading…
Откажи
Сачувај