# HG changeset patch # User cmlenz # Date 1125230805 0 # Node ID 1c24bb7aebac79de68985b51eec943c44df72430 # Parent a9cddfae3c0997e57fbff53876c28d04d784b165 Don't import the summarizers module explicitly, rather declare the module from the egg's `trac_plugin.txt` file. diff --git a/bitten.egg-info/trac_plugin.txt b/bitten.egg-info/trac_plugin.txt --- a/bitten.egg-info/trac_plugin.txt +++ b/bitten.egg-info/trac_plugin.txt @@ -1,2 +1,3 @@ bitten.trac_ext.main +bitten.trac_ext.summarizers bitten.trac_ext.web_ui 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 @@ -21,7 +21,6 @@ from bitten.model import BuildConfig, TargetPlatform, Build, BuildStep, BuildLog from bitten.store import ReportStore from bitten.trac_ext.api import ILogFormatter, IReportSummarizer -from bitten.trac_ext.summarizers import * _status_label = {Build.IN_PROGRESS: 'in progress', Build.SUCCESS: 'completed',