From 4140bfb93c88470c1fb6c45a4ea15d819a6baa35 Mon Sep 17 00:00:00 2001 From: SusanTan Date: Sat, 6 Jul 2013 18:24:38 -0700 Subject: [PATCH] [1.5.x] Fixed #20711 -- Fixed broken link in timesince.py docstring Backport of d63327d843 from master. --- django/utils/timesince.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/django/utils/timesince.py b/django/utils/timesince.py index 1721f097bdb57..7b96d39235dab 100644 --- a/django/utils/timesince.py +++ b/django/utils/timesince.py @@ -16,7 +16,8 @@ def timesince(d, now=None, reversed=False): displayed. For example, "2 weeks, 3 days" and "1 year, 3 months" are possible outputs, but "2 weeks, 3 hours" and "1 year, 5 days" are not. - Adapted from http://blog.natbat.co.uk/archive/2003/Jun/14/time_since + Adapted from + http://web.archive.org/web/20060617175230/http://blog.natbat.co.uk/archive/2003/Jun/14/time_since """ chunks = ( (60 * 60 * 24 * 365, lambda n: ungettext('year', 'years', n)),