From 2032bcf18280a875a59a39cf85c226da0a310d11 Mon Sep 17 00:00:00 2001 From: Anderson Resende Date: Sun, 26 Jun 2016 21:07:42 -0300 Subject: [PATCH] Fixed #26806 -- Triple quoted docstrings in docs/ref/forms/validation.txt. --- docs/ref/forms/validation.txt | 7 ++----- 1 file 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)