diff --git a/aggregator/context_processors.py b/aggregator/context_processors.py index 36b1bcfbe5..2bc2de6d00 100644 --- a/aggregator/context_processors.py +++ b/aggregator/context_processors.py @@ -12,5 +12,5 @@ def community_stats(request): Context processor to calculate Django's age for the community pages. """ # Django 3.2 introduces depth kwarg. Set timesince(..., depth=1) then. - stats = {"age": timesince(DJANGO_DOB)} + stats = {"age": timesince(DJANGO_DOB, depth=1)} return {"community_stats": stats}