From 630e99fd66b393d934c0e654673313aaf6f28b7f Mon Sep 17 00:00:00 2001 From: Martin Sivak Date: Fri, 14 Mar 2008 14:02:18 +0100 Subject: Report the issues from IssuesPlugin.diagnose --- pyfirstaidkit/plugins.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfirstaidkit/plugins.py b/pyfirstaidkit/plugins.py index 07e4c50..5d100b9 100644 --- a/pyfirstaidkit/plugins.py +++ b/pyfirstaidkit/plugins.py @@ -315,6 +315,8 @@ Just fill the issue_tests list with classes describing the tests and let it run. for i in self.tests: self._reporting.info(level = TASK, origin = self, message = "Investigating '%s'" % (i.name,)) result = result or i.detect() + if i.happened(): + self._reporting.info(level = TASK, origin = self, message = i.str()) if result: self._result=ReturnSuccess -- cgit