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/forms/fields.py | |
| parent | b44d42be6d05e88071844b64c6519223cdd2fa80 (diff) | |
Correct flake8 violation E261
Diffstat (limited to 'django/forms/fields.py')
| -rw-r--r-- | django/forms/fields.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/django/forms/fields.py b/django/forms/fields.py index b5816889f9..b874429c5e 100644 --- a/django/forms/fields.py +++ b/django/forms/fields.py @@ -45,9 +45,9 @@ __all__ = ( class Field(object): - widget = TextInput # Default widget to use when rendering this type of Field. - hidden_widget = HiddenInput # Default widget to use when rendering this as "hidden". - default_validators = [] # Default set of validators + widget = TextInput # Default widget to use when rendering this type of Field. + hidden_widget = HiddenInput # Default widget to use when rendering this as "hidden". + default_validators = [] # Default set of validators # Add an 'invalid' entry to default_error_message if you want a specific # field error message not raised by the field validators. default_error_messages = { |
