From 59389f43868acb4511263b221190f22087252863 Mon Sep 17 00:00:00 2001 From: Joel Andres Granados Date: Mon, 12 May 2008 11:51:11 +0200 Subject: Change the detected name to checked. The new variable name better expresses the objective of the issue state. This will help avoid confusion for the plugin developer. --- plugins/plugin_examples/sample1Plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/plugin_examples/sample1Plugin.py') diff --git a/plugins/plugin_examples/sample1Plugin.py b/plugins/plugin_examples/sample1Plugin.py index 560f69d..69107c4 100644 --- a/plugins/plugin_examples/sample1Plugin.py +++ b/plugins/plugin_examples/sample1Plugin.py @@ -44,7 +44,7 @@ class Sample1Plugin(Plugin): def diagnose(self): self._result=ReturnSuccess - self._issue.set(detected = True, happened = False, reporting = self._reporting, origin = self, level = PLUGIN) + self._issue.set(checked = True, happened = False, reporting = self._reporting, origin = self, level = PLUGIN) self._reporting.info("Sample1Plugin in diagnose task", origin = self, level = PLUGIN) def fix(self): -- cgit