summaryrefslogtreecommitdiff
path: root/django/forms/extras
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 10:08:55 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-03 10:08:55 -0800
commitc347f78cc1b2a06958f692f0622deceac534dc6b (patch)
treec91fa9a8b5843249e2e8e6165848aae0c9fb4b17 /django/forms/extras
parent7288e1b02b2504b1694fe14df2d81e6a354c5610 (diff)
Fixed all E226 violations
Diffstat (limited to 'django/forms/extras')
-rw-r--r--django/forms/extras/widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/extras/widgets.py b/django/forms/extras/widgets.py
index 95831679b8..7fd209f397 100644
--- a/django/forms/extras/widgets.py
+++ b/django/forms/extras/widgets.py
@@ -62,7 +62,7 @@ class SelectDateWidget(Widget):
self.years = years
else:
this_year = datetime.date.today().year
- self.years = range(this_year, this_year+10)
+ self.years = range(this_year, this_year + 10)
# Optional dict of months to use in the "month" select box.
if months: