Opened 19 years ago
Closed 19 years ago
#2906 closed defect (fixed)
clicking timeline changeset link errors
Reported by: | Owned by: | Alec Thomas | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | version control/changeset view | Version: | devel |
Severity: | normal | Keywords: | workflow |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
In the source:/sandbox/workflow branch, changeset links are broken:
Python Traceback Traceback (most recent call last): File "/usr/lib/python2.4/site-packages/trac/web/main.py", line 283, in dispatch_request dispatcher.dispatch(req) File "/usr/lib/python2.4/site-packages/trac/web/main.py", line 170, in dispatch resp = chosen_handler.process_request(req) File "/usr/lib/python2.4/site-packages/trac/versioncontrol/web_ui/changeset.py", line 175, in process_request req.check_modified(chgset.date, [ TypeError: pretty_timedelta() takes at most 2 arguments (3 given)
Attachments (0)
Change History (5)
comment:1 by , 19 years ago
Milestone: | 0.10 |
---|---|
Resolution: | → invalid |
Status: | new → closed |
comment:2 by , 19 years ago
Resolution: | invalid |
---|---|
Status: | closed → reopened |
actually, look at the setup.py in source:/sandbox/workflow
It doesn't have the package trac.util listed, so it doesn't get installed. But, correct, after adding that the problem is fixed.
comment:3 by , 19 years ago
Keywords: | workflow added |
---|---|
Status: | reopened → new |
Thanks for the clarification. This is fixed in the trunk, so it will end up in the workflow branch during the next sync.
comment:4 by , 19 years ago
Status: | new → assigned |
---|
I am busily syncing with trunk, along with some other cleanup. Should have another commit ready by the weekend.
comment:5 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
pretty_timedelta
actually accepts 3 arguments (in trunk or sandbox/workflow). You must have an oldtrac/util.pyc
somewhere… You should wipe out your previous trac installation and reinstall:trac.util
is now a package.