Roundup Tracker - Issues

Message1868

Author dickkarpinski
Recipients
Date 2005-02-21.22:28:44
Message-id
In-reply-to
I named a search unread since it filtered on status of
unread, but then I wanted to change it to Unread to be
consistent with other named searches. I tried just
changing the case via edit but that did nothing. Then I
edited again and first clicked on Delete and then
selected Remove. This got me a big error message:

 
TypeError: unsubscriptable object	Python 2.2.2
/usr/bin/python

A problem occurred while running a Python script. Here
is the sequence of function calls leading up to the
error, with the most recent (innermost) call first. The
exception attributes are:
      __doc__ = 'Inappropriate argument type.'
      __getitem__ = <bound method TypeError.__getitem__
of <exceptions.TypeError instance>>
      __init__ = <bound method TypeError.__init__ of
<exceptions.TypeError instance>>
      __module__ = 'exceptions'
      __str__ = <bound method TypeError.__str__ of
<exceptions.TypeError instance>>
      args = ('unsubscriptable object',)

/home/craskinc/public_html/cgi-bin/roundup/cgi/actions.py
in handle(self=<roundup.cgi.actions.EditItemAction
instance>)
  557         if self.nodeid is None:
  558             req = templating.HTMLRequest(self.client)
  559             url += '&' + req.indexargs_href('',
{})[1:]
      url =
'http://raskincenter.org/cgi-bin/roundup.cgi/issu...e=user%208%20queries%20edited%20ok&@template=edit',
req = <roundup.cgi.templating.HTMLRequest instance>,
global indexargs_href = undefined
  560         raise exceptions.Redirect, url
  561 

/home/craskinc/public_html/cgi-bin/roundup/cgi/actions.py
in execute(self=<roundup.cgi.actions.EditItemAction
instance>)
   37         """Execute the action specified by this
object."""
   38         self.permission()
   39         return self.handle()
      self = <roundup.cgi.actions.EditItemAction
instance>, global handle = undefined
   40 
   41     name = ''

/home/craskinc/public_html/cgi-bin/roundup/cgi/client.py
in handle_action(self=<roundup.cgi.client.Client instance>)
  752                 return getattr(self, action_klass)()
  753             else:
  754                 return action_klass(self).execute()
      action_klass = <class
roundup.cgi.actions.EditItemAction>, self =
<roundup.cgi.client.Client instance>, global execute =
undefined
  755 
  756         except ValueError, err:

/home/craskinc/public_html/cgi-bin/roundup/cgi/client.py
in inner_main(self=<roundup.cgi.client.Client instance>)
  298         except:
  299             # everything else
  300            
self.write_html(cgitb.html(i18n=self.translator))
      self = <roundup.cgi.client.Client instance>,
global write_html = undefined, global cgitb = <module
'roundup.cgi.cgitb' from 'roundup/cgi/cgitb.pyc'>, html
= undefined, global i18n = undefined, global translator
= undefined
  301 
  302     def clean_sessions(self):

 ----------------------

Does that mean we installed it badly?

Dick
History
Date User Action Args
2009-02-03 14:21:13adminlinkissue1145809 messages
2009-02-03 14:21:13admincreate