diff --git a/lemoncurry/jinja2/ago.py b/lemoncurry/jinja2/ago.py index 9da1a1d..4794b0e 100644 --- a/lemoncurry/jinja2/ago.py +++ b/lemoncurry/jinja2/ago.py @@ -6,4 +6,4 @@ def ago(dt: datetime) -> str: # We have to convert the datetime we get to local time first, because ago # just strips the timezone from a timezone-aware datetime. dt = dt.astimezone() - return human(dt, past_tense='{}', abbreviate=True) + return human(dt, precision=1, past_tense='{}', abbreviate=True)