summaryrefslogtreecommitdiff
path: root/docs/ref/forms
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:06:54 -0400
commit2032bcf18280a875a59a39cf85c226da0a310d11 (patch)
treeb549e3ae9ab359620be2e2104f3dec3536feeefe /docs/ref/forms
parent9588718cd404d73b2be09241b424b539d8d8c66e (diff)
Fixed #26806 -- Triple quoted docstrings in docs/ref/forms/validation.txt.
Diffstat (limited to 'docs/ref/forms')
-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)