summaryrefslogtreecommitdiff
path: root/django/forms/widgets.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-23 06:09:29 -0400
committerTim Graham <timograham@gmail.com>2013-10-23 06:09:29 -0400
commitae48d77ef8e14dae76fddcd5a677b897c7c7c4ae (patch)
treefc938daf79b1061aeb70c9d7dd33108d2eb63544 /django/forms/widgets.py
parent51d2e1fb233b5507bf14300787939717c4d93834 (diff)
Fixed E225 pep8 warnings.
Diffstat (limited to 'django/forms/widgets.py')
-rw-r--r--django/forms/widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/widgets.py b/django/forms/widgets.py
index e6f10dd37b..faee6381a2 100644
--- a/django/forms/widgets.py
+++ b/django/forms/widgets.py
@@ -274,7 +274,7 @@ class PasswordInput(TextInput):
def render(self, name, value, attrs=None):
if not self.render_value:
- value=None
+ value = None
return super(PasswordInput, self).render(name, value, attrs)
class HiddenInput(Input):