summaryrefslogtreecommitdiffstats
path: root/pyfirstaidkit/plugins.py
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2008-03-14 14:02:18 +0100
committerMartin Sivak <msivak@redhat.com>2008-03-14 14:02:18 +0100
commit630e99fd66b393d934c0e654673313aaf6f28b7f (patch)
treec49057c68d2360e985d988383427d22732584c2f /pyfirstaidkit/plugins.py
parent020ed3044c04ef342f0ab9fb536b0d940eaca319 (diff)
downloadfirstaidkit-630e99fd66b393d934c0e654673313aaf6f28b7f.tar.gz
firstaidkit-630e99fd66b393d934c0e654673313aaf6f28b7f.tar.xz
firstaidkit-630e99fd66b393d934c0e654673313aaf6f28b7f.zip
Report the issues from IssuesPlugin.diagnose
Diffstat (limited to 'pyfirstaidkit/plugins.py')
-rw-r--r--pyfirstaidkit/plugins.py2
1 files changed, 2 insertions, 0 deletions
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