Przeglądaj źródła

Fix !registration on birthdays.

tags/v0.2
Ben Kurtovic 9 lat temu
rodzic
commit
1bde44b438
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      earwigbot/commands/registration.py

+ 1
- 1
earwigbot/commands/registration.py Wyświetl plik

@@ -69,7 +69,7 @@ class Registration(Command):
msg.append("{0} {1}".format(num, unit if num == 1 else unit + "s"))

now = datetime.utcnow()
bd_passed = (now.month, now.day) < (birth.month, birth.day)
bd_passed = now.timetuple()[1:-3] < birth.timetuple()[1:-3]
years = now.year - birth.year - bd_passed
delta = now - birth.replace(year=birth.year + years)
insert("year", years)


Ładowanie…
Anuluj
Zapisz