Opened 19 years ago
Closed 19 years ago
#2420 closed defect (fixed)
Minor error in http://www.djangoproject.com/documentation/syndication/
| Reported by: | anonymous | Owned by: | Adrian Holovaty |
|---|---|---|---|
| Component: | contrib.admin | Version: | |
| Severity: | normal | Keywords: | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
http://www.djangoproject.com/documentation/syndication/
def author_email(self, obj):
"""
Takes the object returned by get_object() and returns the feed's
author's e-mail as a normal Python string.
"""
def author_name(self):
"""
Returns the feed's author's e-mail as a normal Python string.
"""
author_email = 'test@…' # Hard-coded author e-mail.
author_name should probably be author_email... if only this were a wiki
Note:
See TracTickets
for help on using tickets.
(In [3451]) Fixed #2420 -- Fixed typo in docs/syndication_feeds.txt