Roundup Tracker - Issues

Issue 1145809

classification
Edit search and delete and then remove fails.
Type: Severity: normal
Components: None Versions:
process
Status: closed
:
: : dickkarpinski, richard
Priority: normal :

Created on 2005-02-21 22:28 by dickkarpinski, last changed 2005-03-03 02:57 by richard.

Messages
msg1868 Author: [hidden] (dickkarpinski) Date: 2005-02-21 22:28
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
msg1869 Author: [hidden] (richard) Date: 2005-03-03 02:57
Logged In: YES 
user_id=6405

I can't reproduce this problem - and I suspect it's related to 1145822 
(error in the same place) so I'll just close this report. 
History
Date User Action Args
2005-02-21 22:28:44dickkarpinskicreate