Modify

Opened 13 years ago

Closed 13 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 Ryan J Ollos)

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 13 years ago by Ryan J Ollos

Description: modified (diff)

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

comment:2 Changed 13 years ago by Ryan J Ollos

(In [11178]) Refs #9722: Check if a ticket field is None before trying to add it to the list of fields to be filtered (or not to be filtered, depending on the show_only setting).

comment:3 Changed 13 years ago by Ryan J Ollos

Status: newassigned

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 13 years ago by Ryan J Ollos

Resolution: fixed
Status: assignedclosed

Well, please follow up if you can.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Ryan J Ollos.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.