diff options
author | Martin Sivak <msivak@redhat.com> | 2008-06-30 14:12:10 +0200 |
---|---|---|
committer | Martin Sivak <msivak@redhat.com> | 2008-06-30 14:12:10 +0200 |
commit | bbd61c151a520ae155ca06ddc351d7276564b8e1 (patch) | |
tree | 3ab0d2bbfa7ac48417f4d92e1f5cc860b2f171b2 | |
parent | 9707581ff6ca1badeeaa0d3a3e214ec9a104a5bd (diff) | |
download | firstaidkit-bbd61c151a520ae155ca06ddc351d7276564b8e1.tar.gz firstaidkit-bbd61c151a520ae155ca06ddc351d7276564b8e1.tar.xz firstaidkit-bbd61c151a520ae155ca06ddc351d7276564b8e1.zip |
Discovery plugin: better description
-rw-r--r-- | plugins/discovery.py | 4 |
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) |