* Bogdan Stanciu <[email protected]> [2009-12-30 16:36]: > I know this is about a plugin, but i have no clue where I could ask:-)) > > I installed the Itteco plugin, everything works fine, but the roadmad > page loads only if there are no milestones for the selected milestones > level, otherwise i get the following error: > > TypeError: milestone_stats_data() takes at least 4 arguments (3 given)
API of this function chaged lately. You will need to fix the call, adding an Evnvironmnt object as first argument in function _get_milestone_with_all_kids in file itteco\ticket\roadmap.py". (From something like milestone_stats_data(sth, sth, sth) to milestone_stats_data(self.env, sth, sth, sth) ) greets 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.
