summaryrefslogtreecommitdiff
path: root/docs/ref/forms/validation.txt
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-03-22 21:30:49 +0100
committerClaude Paroz <claude@2xlibre.net>2014-03-22 21:32:20 +0100
commit3a97f992fbfbcf8b0480875b257e5d541a4b8315 (patch)
treec5ac40df266f098c5b7b1378864685869fe2a324 /docs/ref/forms/validation.txt
parent232181d1c5307d9af5fc292682661e91439a9289 (diff)
downloaddjango-3a97f992fbfbcf8b0480875b257e5d541a4b8315.tar.gz
Fixed #22313 -- Removed 'u' prefixes from documentation
Diffstat (limited to 'docs/ref/forms/validation.txt')
-rw-r--r--docs/ref/forms/validation.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt
index 78a022d436..6ee9bb17a5 100644
--- a/docs/ref/forms/validation.txt
+++ b/docs/ref/forms/validation.txt
@@ -408,7 +408,7 @@ sample) looks like this::
subject = cleaned_data.get("subject")
if cc_myself and subject and "help" not in subject:
- msg = u"Must put 'help' in subject when cc'ing yourself."
+ msg = "Must put 'help' in subject when cc'ing yourself."
self.add_error('cc_myself', msg)
self.add_error('subject', msg)