Opened 15 years ago
Closed 15 years ago
#8632 closed defect (fixed)
Trouble executing queries on the links found next to the owner, reporter, etc. in a ticket
Reported by: | Owned by: | Remy Blank | |
---|---|---|---|
Priority: | normal | Milestone: | 0.12 |
Component: | ticket system | Version: | 0.12dev |
Severity: | major | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
If I try to click on the link on the reporter, owner, priority, component or version of a ticket, I get the following error:
No handler matched request to /query/{'status': u'!closed', 'reporter': u'wildchild'}
The URL that causes the error looks like this:
http://hostname:8008/trac/test/query/{'status': u'!closed', 'reporter': u'wildchild'}
Attachments (0)
Change History (2)
comment:1 by , 15 years ago
Milestone: | → 0.12 |
---|---|
Owner: | set to |
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Passing a subclass of dict
, list
or tuple
to Href.__call__()
didn't work, and _RequestArgs
is a subclass of dict
. Fixed in [8563], thanks for the report!
Weird. I'll check that.