Chyba ve znaménku při počítání časů :-D

This commit is contained in:
Pavel "LEdoian" Turinsky 2020-12-02 17:57:06 +01:00
parent 88af1e6752
commit 8e17ad9f46

View file

@ -18,7 +18,7 @@ def kratke_datum(dt):
naive_now = datetime.now()
tz = timezone(TIME_ZONE)
now = tz.localize(naive_now)
delta = dt - now
delta = now - dt
if delta <= timedelta(days=1):
return dt.strftime("%k:%M")
if delta <= timedelta(years=1):