Modify ↓
#1371 closed defect (fixed)
Error on accessing timeline rss ('item' not found)
Reported by: | Owned by: | Christopher Lenz | |
---|---|---|---|
Priority: | normal | Milestone: | 0.9 |
Component: | timeline | Version: | devel |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
trivial maybe typo fix. s/item/event/.
-
trac/Timeline.py
145 145 146 146 if format == 'rss': 147 147 # For RSS, author must be an email address 148 if item['author'].find('@') != -1:149 item['author.email'] = item['author']148 if event['author'].find('@') != -1: 149 event['author.email'] = event['author'] 150 150 151 151 req.hdf['timeline.items.%d' % idx] = event 152 152
Attachments (0)
Change History (2)
comment:1 by , 20 years ago
Milestone: | → 0.9 |
---|---|
Owner: | changed from | to
Status: | new → assigned |
comment:2 by , 20 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in [1456].