Bladeren bron

Fix !registration on birthdays.

tags/v0.2
Ben Kurtovic 9 jaren geleden
bovenliggende
commit
1bde44b438
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. +1
    -1
      earwigbot/commands/registration.py

+ 1
- 1
earwigbot/commands/registration.py Bestand weergeven

@@ -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)


Laden…
Annuleren
Opslaan