mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #22313 -- Removed 'u' prefixes from documentation
This commit is contained in:
parent
232181d1c5
commit
3a97f992fb
21 changed files with 179 additions and 177 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue