summaryrefslogtreecommitdiffstats
path: root/plugins/sample1Plugin.py
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2007-11-22 15:27:40 +0100
committerJoel Andres Granados <jgranado@redhat.com>2007-11-22 15:27:40 +0100
commit165a0ed22f453e9347a698d6411725c8d46caff5 (patch)
tree295015d0f66f5d2d8425b6192b2763fbbfd4c6dd /plugins/sample1Plugin.py
parent9a6c6d665c7d9c9da78ea5488bcd4b8b7f7df211 (diff)
downloadfirstaidkit-165a0ed22f453e9347a698d6411725c8d46caff5.tar.gz
firstaidkit-165a0ed22f453e9347a698d6411725c8d46caff5.tar.xz
firstaidkit-165a0ed22f453e9347a698d6411725c8d46caff5.zip
Erase the return from the functions.
Diffstat (limited to 'plugins/sample1Plugin.py')
-rw-r--r--plugins/sample1Plugin.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/sample1Plugin.py b/plugins/sample1Plugin.py
index 223dd4a..92fe6cd 100644
--- a/plugins/sample1Plugin.py
+++ b/plugins/sample1Plugin.py
@@ -24,29 +24,21 @@ class Sample1Plugin(Plugin):
Plugin.__init__(self)
def prepare(self):
self._result=ReturnValueTrue
- return self._result
def destroy(self):
self._result=ReturnValueTrue
- return self._result
def backup(self):
self._result=ReturnValueTrue
- return self._result
def restore(self):
self._result=ReturnValueTrue
- return self._result
def diagnose(self):
self._result=ReturnValueTrue
- return self._result
def fix(self):
self._result=ReturnValueFalse
- return self._result
-
-
def get_plugin():
return Sample1Plugin()