Modify

Opened 12 years ago

#9543 new defect

TimelineCheckinFilterPlugin fails with trac 0.12 (fix included)

Reported by: michaelb@… Owned by: Dave
Priority: normal Component: TimelineCheckinFilterPlugin
Severity: normal Keywords:
Cc: Trac Release: 0.12

Description

The plugin seemed to fail when attempting to filter changesets by their path with error: "tuple does not support attribute get_changes()"

The changeset structure seems to have changed since 0.11 and to resolve this, change the line: if (not filtered_paths) or _changeset_belongs_to_paths(changeset_object, filtered_paths):

to

if (not filtered_paths) or _changeset_belongs_to_paths(changeset_object[0], filtered_paths):

Thanks for this plugin, this has helped us enormously to keep an overview on things with multiple projects in the same repository!

Attachments (0)

Change History (0)

Modify Ticket

Change Properties
Set your email in Preferences
Action
as new The owner will remain Dave.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.