From 1484f2e2255da321b4810cd06da527b57774e18a Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 26 Jul 2005 14:26:15 +0000 Subject: [PATCH] Fixed #207 -- thanks, Mathieu. git-svn-id: http://code.djangoproject.com/svn/django/trunk@313 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/dateformat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/dateformat.py b/django/utils/dateformat.py index 9913f01a57..b558029840 100644 --- a/django/utils/dateformat.py +++ b/django/utils/dateformat.py @@ -293,7 +293,7 @@ class TimeFormat: return 'noon' return '%s %s' % (self.f(), self.a()) - def s(self, s): + def s(self): "Seconds; i.e. '00' to '59'" return '%02d' % self.time.second