# HG changeset patch # User cmlenz # Date 1126705798 0 # Node ID 6bb8e7a18072402cf7dc634b8f3bd77a8c81bbd0 # Parent d72c0587fae9648df95eb04b473188f8b71f7ace Fix a regression introduced in [206]: When the path of a build configuration did not exactly match the path in the repository (trailing slash and all), the builds wouldn't be displayed on the config page. diff --git a/bitten/trac_ext/web_ui.py b/bitten/trac_ext/web_ui.py --- a/bitten/trac_ext/web_ui.py +++ b/bitten/trac_ext/web_ui.py @@ -335,7 +335,7 @@ root = repos.get_node(config.path) for idx, (path, rev, chg) in enumerate(root.get_history()): # Don't follow moves/copies - if path != config.path: + if path != repos.normalize_path(config.path): break # If the directory was empty at that revision, it isn't built old_node = repos.get_node(path, rev)