marten schrieb:
> - agilo 0.7.3.3-r1417-20090313
> - 75 tickets
Looks good to me.
> I don't see a traceback as admin. How do I switch to simple view?
Normally the error page says something like this at the top:
"Trac detected an internal error: ..."
Then there is the
"Python Traceback
Most recent call last: "
Below you find the button:
'Switch to plain text view'
If you click that you get a traceback which is more usable for use.
However I think in your special case we mask the real error in our code
by a TracError which does not return the traceback. For better
diagnostics, you can replace one line in agilo/scrum/backlog.py, line 879:
except Exception, e:
error(self, str(e))
if handle_ta:
db.rollback()
raise TracError(_("An error occurred while loading Backlog data:
%s" % str(e)))
Replace the line 'raise TracError(_(...' just with a 'raise' (be careful
to use spaces for indentation). After that the problem should be more
obvious in the traceback.
fs
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH
http://www.agile42.com and is focused in supporting Agilo for Scrum users.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo?hl=en
-~----------~----~----~----~------~----~------~--~---