Modify ↓
#7545 closed defect (fixed)
[Patch] Trac 0.12 AttributeError: 'NoneType' object has no attribute 'get_node'
Reported by: | Owned by: | Ryan J Ollos | |
---|---|---|---|
Priority: | normal | Component: | RepoSearchPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description
Probably due to new multiple-repo support. This seems to fix it, for now:
in file: search.py
67c67 < repo = self.env.get_repository(req.authname) --- > repo = self.env.get_repository(authname=req.authname)
Attachments (0)
Change History (4)
comment:1 Changed 14 years ago by
Status: | new → assigned |
---|
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:4 Changed 14 years ago by
If you get this working under 0.12, please post a note to #7046. Thanks!
Note: See
TracTickets for help on using
tickets.
I'll make a 0.12 branch for the plugin and checkin this change. Is this actually working for you under 0.12?