summaryrefslogtreecommitdiff
path: root/django/utils/dates.py
diff options
context:
space:
mode:
authorRay Ashman Jr <ray.ashman.jr@gmail.com>2013-11-02 15:27:47 -0400
committerRay Ashman Jr <ray.ashman.jr@gmail.com>2013-11-02 15:27:47 -0400
commitdcfc8fa9721955dc4fcfb6e5e506be12f74c5b85 (patch)
treedb0ff9bc296501a9f8eb5f7b44e3b49652103992 /django/utils/dates.py
parentb44d42be6d05e88071844b64c6519223cdd2fa80 (diff)
Correct flake8 violation E261
Diffstat (limited to 'django/utils/dates.py')
-rw-r--r--django/utils/dates.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/dates.py b/django/utils/dates.py
index 37746294b8..25f092e618 100644
--- a/django/utils/dates.py
+++ b/django/utils/dates.py
@@ -27,7 +27,7 @@ MONTHS_3_REV = {
'jan': 1, 'feb': 2, 'mar': 3, 'apr': 4, 'may': 5, 'jun': 6, 'jul': 7, 'aug': 8,
'sep': 9, 'oct': 10, 'nov': 11, 'dec': 12
}
-MONTHS_AP = { # month names in Associated Press style
+MONTHS_AP = { # month names in Associated Press style
1: pgettext_lazy('abbrev. month', 'Jan.'),
2: pgettext_lazy('abbrev. month', 'Feb.'),
3: pgettext_lazy('abbrev. month', 'March'),
@@ -41,7 +41,7 @@ MONTHS_AP = { # month names in Associated Press style
11: pgettext_lazy('abbrev. month', 'Nov.'),
12: pgettext_lazy('abbrev. month', 'Dec.')
}
-MONTHS_ALT = { # required for long date representation by some locales
+MONTHS_ALT = { # required for long date representation by some locales
1: pgettext_lazy('alt. month', 'January'),
2: pgettext_lazy('alt. month', 'February'),
3: pgettext_lazy('alt. month', 'March'),