Hi. Today I tried the update to 0.12 and Bitten failed. After a little of searching:
Environemnt.get_repository was supposed to be backward-compatible, that is how I understand the comment there. So if someone do not pass the reponame it returns the default repo. Unfortunately, bacause of the arguments change it does not work. In 0.12 it looks like that: def get_repository(self, reponame=None, authname=None): In 0.11: def get_repository(self, authname=None): The order of parameters was changed (reponame inserted before authname). So for a normal call: env.get_repository(someauthname) Trac looks for repository named like the logged in user, does not find it, and returns None. I think it would be good to fix that, as it can make most repo-related plugins not work. OTOH it would change API of already released 0.12 so... -- silk -- You received this message because you are subscribed to the Google Groups "Trac Development" group. 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/trac-dev?hl=en.
