summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2008-06-30 14:12:10 +0200
committerMartin Sivak <msivak@redhat.com>2008-06-30 14:12:10 +0200
commitbbd61c151a520ae155ca06ddc351d7276564b8e1 (patch)
tree3ab0d2bbfa7ac48417f4d92e1f5cc860b2f171b2
parent9707581ff6ca1badeeaa0d3a3e214ec9a104a5bd (diff)
downloadfirstaidkit-bbd61c151a520ae155ca06ddc351d7276564b8e1.tar.gz
firstaidkit-bbd61c151a520ae155ca06ddc351d7276564b8e1.tar.xz
firstaidkit-bbd61c151a520ae155ca06ddc351d7276564b8e1.zip
Discovery plugin: better description
-rw-r--r--plugins/discovery.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/discovery.py b/plugins/discovery.py
index 388f098..72bb733 100644
--- a/plugins/discovery.py
+++ b/plugins/discovery.py
@@ -27,7 +27,7 @@ import os
class Sample1Plugin(Plugin):
"""Discover information about the system"""
name = "Discovery"
- description = "Discovering system properties failed"
+ description = "Discover properties of the system"
version = "0.0.1"
author = "Martin Sivak"
@@ -36,7 +36,7 @@ class Sample1Plugin(Plugin):
def __init__(self, *args, **kwargs):
Plugin.__init__(self, *args, **kwargs)
- self._issue = SimpleIssue(self.name, self.description)
+ self._issue = SimpleIssue(self.name, "Discovering system properties failed")
def prepare(self):
self._issue.set(reporting = self._reporting, origin = self, level = PLUGIN)