Opened 18 years ago

Closed 18 years ago

#1325 closed defect (invalid)

Replacing a ticket attachement in Trac causes a traceback

Reported by: andreas@… Owned by: Jacob
Component: *.djangoproject.com Version:
Severity: trivial Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Trying to replace a ticket attachement with a file of the same name causes a traceback:

Traceback (most recent call last):
  File "/usr/lib/python2.3/site-packages/trac/web/modpython_frontend.py", line 205, in handler
    dispatch_request(mpr.path_info, mpr, env)
  File "/usr/lib/python2.3/site-packages/trac/web/main.py", line 139, in dispatch_request
    dispatcher.dispatch(req)
  File "/usr/lib/python2.3/site-packages/trac/web/main.py", line 107, in dispatch
    resp = chosen_handler.process_request(req)
  File "/usr/lib/python2.3/site-packages/trac/attachment.py", line 265, in process_request
    self._do_save(req, attachment)
  File "/usr/lib/python2.3/site-packages/trac/attachment.py", line 327, in _do_save
    perm_map = {'ticket': perm.TICKET_ADMIN,
AttributeError: 'module' object has no attribute 'TICKET_ADMIN'

Change History (2)

comment:1 by Adrian Holovaty, 18 years ago

priority: normallowest
Severity: normaltrivial

comment:2 by Adrian Holovaty, 18 years ago

Resolution: invalid
Status: newclosed

Closing because this may be a Trac bug, not a Django bug.

Note: See TracTickets for help on using tickets.
Back to Top