Selaa lähdekoodia

int(timedelta.total_seconds())

tags/v0.1^2
Ben Kurtovic 12 vuotta sitten
vanhempi
commit
263582f48c
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      earwigbot/tasks/drn_clerkbot.py

+ 1
- 1
earwigbot/tasks/drn_clerkbot.py Näytä tiedosto

@@ -596,7 +596,7 @@ class DRNClerkBot(Task):

def format_time_since(self, dt):
parts = [("year", 31536000), ("day", 86400), ("hour", 3600)]
seconds = (datetime.utcnow() - dt).total_seconds()
seconds = int((datetime.utcnow() - dt).total_seconds())
msg = []
for name, size in parts:
num = seconds // size


Ladataan…
Peruuta
Tallenna