summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAnderson Resende <andersonresende86@gmail.com>2016-06-26 21:07:42 -0300
committerTim Graham <timograham@gmail.com>2016-06-27 09:07:21 -0400
commit4be49ff38a0ab24d202659f851e39aa1070d47ee (patch)
tree357ef706f8d48d6f37ba0eaf3a2d0a73c07b1996 /docs
parent41ac92ef52b02731e6ecc129567166595cf6c178 (diff)
[1.9.x] Fixed #26806 -- Triple quoted docstrings in docs/ref/forms/validation.txt.
Backport of 2032bcf18280a875a59a39cf85c226da0a310d11 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/forms/validation.txt7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt
index bb9a928c1a..b57f44cb6c 100644
--- a/docs/ref/forms/validation.txt
+++ b/docs/ref/forms/validation.txt
@@ -263,19 +263,16 @@ containing comma-separated email addresses. The full class looks like this::
class MultiEmailField(forms.Field):
def to_python(self, value):
- "Normalize data to a list of strings."
-
+ """Normalize data to a list of strings."""
# Return an empty list if no input was given.
if not value:
return []
return value.split(',')
def validate(self, value):
- "Check if value consists only of valid emails."
-
+ """Check if value consists only of valid emails."""
# Use the parent's handling of required fields, etc.
super(MultiEmailField, self).validate(value)
-
for email in value:
validate_email(email)