Explorar el Código

int(timedelta.total_seconds())

tags/v0.1^2
Ben Kurtovic hace 12 años
padre
commit
263582f48c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      earwigbot/tasks/drn_clerkbot.py

+ 1
- 1
earwigbot/tasks/drn_clerkbot.py Ver fichero

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


Cargando…
Cancelar
Guardar