forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-01-24 23:04:35 +02:00
parent eb90985c48
commit 1c85d271cb
1 changed files with 1 additions and 3 deletions

View File

@ -55,9 +55,7 @@ def participation_stats(v):
@cache.memoize(timeout=86400)
def stats():
now = int(time.time())
day = now - 86400
day = int(time.time()) - 86400
return {"marseys": g.db.query(Marsey.name).count(),
"users": g.db.query(User.id).count(),