From dcfc8fa9721955dc4fcfb6e5e506be12f74c5b85 Mon Sep 17 00:00:00 2001 From: Ray Ashman Jr Date: Sat, 2 Nov 2013 15:27:47 -0400 Subject: Correct flake8 violation E261 --- django/utils/dateformat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/utils/dateformat.py') diff --git a/django/utils/dateformat.py b/django/utils/dateformat.py index 2fe6760a88..27413a2e67 100644 --- a/django/utils/dateformat.py +++ b/django/utils/dateformat.py @@ -267,7 +267,7 @@ class DateFormat(TimeFormat): def S(self): "English ordinal suffix for the day of the month, 2 characters; i.e. 'st', 'nd', 'rd' or 'th'" - if self.data.day in (11, 12, 13): # Special case + if self.data.day in (11, 12, 13): # Special case return 'th' last = self.data.day % 10 if last == 1: -- cgit v1.3