diff options
| author | Martin Sivak <msivak@redhat.com> | 2007-12-04 16:50:16 +0100 |
|---|---|---|
| committer | Martin Sivak <msivak@redhat.com> | 2007-12-04 16:50:16 +0100 |
| commit | 0312b205b090d6c23f9106d60aba07efe1e54775 (patch) | |
| tree | 3751970d6f531cbefb39dae893a29a3e1211852b /plugins/sample3Plugin/sample3Plugin.py | |
| parent | 3746fc3357c9aaf0fdf41c1b8f9e10ac5edcb0fe (diff) | |
| download | firstaidkit-0312b205b090d6c23f9106d60aba07efe1e54775.tar.gz firstaidkit-0312b205b090d6c23f9106d60aba07efe1e54775.tar.xz firstaidkit-0312b205b090d6c23f9106d60aba07efe1e54775.zip | |
Add basic reporting class and integrate it into the plugin system
Diffstat (limited to 'plugins/sample3Plugin/sample3Plugin.py')
| -rw-r--r-- | plugins/sample3Plugin/sample3Plugin.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/sample3Plugin/sample3Plugin.py b/plugins/sample3Plugin/sample3Plugin.py index 319fde4..01f7e83 100644 --- a/plugins/sample3Plugin/sample3Plugin.py +++ b/plugins/sample3Plugin/sample3Plugin.py @@ -24,8 +24,9 @@ class Sample3Plugin(Plugin): name = "Sample3Plugin" version = "0.0.1" author = "Joel Andres Granados" - def __init__(self, flow): - Plugin.__init__(self, flow) + + def __init__(self, *args, **kwargs): + Plugin.__init__(self, *args, **kwargs) def prepare(self): # Prepare command line. |
