diff options
| author | Ray Ashman Jr <ray.ashman.jr@gmail.com> | 2013-11-02 15:27:47 -0400 |
|---|---|---|
| committer | Ray Ashman Jr <ray.ashman.jr@gmail.com> | 2013-11-02 15:27:47 -0400 |
| commit | dcfc8fa9721955dc4fcfb6e5e506be12f74c5b85 (patch) | |
| tree | db0ff9bc296501a9f8eb5f7b44e3b49652103992 /django/utils/dateformat.py | |
| parent | b44d42be6d05e88071844b64c6519223cdd2fa80 (diff) | |
Correct flake8 violation E261
Diffstat (limited to 'django/utils/dateformat.py')
| -rw-r--r-- | django/utils/dateformat.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
