Modify ↓
Opened 14 years ago
Closed 14 years ago
#9722 closed defect (fixed)
'NoneType' object is unsubscriptable
| Reported by: | anonymous | Owned by: | Ryan J Ollos |
|---|---|---|---|
| Priority: | normal | Component: | SimpleTicketPlugin |
| Severity: | normal | Keywords: | |
| Cc: | Trac Release: | 0.12 |
Description (last modified by )
Sometimes, the following error occurs:
2012-01-22 12:06:23,170 Trac[main] ERROR: Exception caught while post-processing request:
Traceback (most recent call last):
File "build/bdist.linux-x86_64/egg/trac/web/main.py", line 270, in dispatch
self._post_process_request(req)
File "build/bdist.linux-x86_64/egg/trac/web/main.py", line 359, in _post_process_request
f.post_process_request(req, *(None,)*extra_arg_count)
File "build/bdist.linux-x86_64/egg/simpleticket/web_ui.py", line 40, in post_process_request
data['fields'] = [f for f in data['fields'] if f['name'] not in self.fields]
TypeError: 'NoneType' object is unsubscriptable
A solution is to add “if f is not None” to the array comprehensions on lines 38 and 40 before it tries to use f['name'].
Attachments (0)
Change History (4)
comment:1 Changed 14 years ago by
| Description: | modified (diff) |
|---|
comment:2 Changed 14 years ago by
comment:3 Changed 14 years ago by
| Status: | new → assigned |
|---|
I added the check, but I'd like to reproduce the issue, so I'd appreciate if you can provide more details regarding your Trac installation.
comment:4 Changed 14 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Well, please follow up if you can.
Note: See
TracTickets for help on using
tickets.



I'll go ahead and apply your fix. Any idea of the circumstances that result in a ticket field being none?