fds
This commit is contained in:
parent
6a36400514
commit
f9b7d10e1c
1 changed files with 2 additions and 2 deletions
|
@ -205,10 +205,10 @@ def cached_chart(kind):
|
|||
today_cutoff = calendar.timegm(midnight_this_morning)
|
||||
|
||||
if kind == "daily":
|
||||
file = f"{SITE}_daily.png"
|
||||
file = f"../{SITE}_daily.png"
|
||||
day_cutoffs = [today_cutoff - 86400 * i for i in range(47)][1:]
|
||||
else:
|
||||
file = f"{SITE}_weekly.png"
|
||||
file = f"../{SITE}_weekly.png"
|
||||
day_cutoffs = [today_cutoff - 86400 * 7 * i for i in range(47)][1:]
|
||||
|
||||
day_cutoffs.insert(0, calendar.timegm(now))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue