diff options
author | Martin Sivak <msivak@redhat.com> | 2008-03-18 15:03:39 +0100 |
---|---|---|
committer | Martin Sivak <msivak@redhat.com> | 2008-03-18 15:21:23 +0100 |
commit | 82b28a52f8152e2f155d282cadcc141a8effc680 (patch) | |
tree | dd6dbd97e37154632267b74282db6f1a0ad1188c /pyfirstaidkit/plugins.py | |
parent | 590fc4aa9d28bbbb788f6a6071a58688c4f68931 (diff) | |
download | firstaidkit-82b28a52f8152e2f155d282cadcc141a8effc680.tar.gz firstaidkit-82b28a52f8152e2f155d282cadcc141a8effc680.tar.xz firstaidkit-82b28a52f8152e2f155d282cadcc141a8effc680.zip |
Fix the traceback with unknown keyword argument backups in IssuesPlugin
Diffstat (limited to 'pyfirstaidkit/plugins.py')
-rw-r--r-- | pyfirstaidkit/plugins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyfirstaidkit/plugins.py b/pyfirstaidkit/plugins.py index 6e9a4ce..05464fe 100644 --- a/pyfirstaidkit/plugins.py +++ b/pyfirstaidkit/plugins.py @@ -298,8 +298,8 @@ Just fill the issue_tests list with classes describing the tests and let it run. issue_tests = [] #List of Issue classes to check - def __init__(self, flow, reporting, dependencies, path = None): - Plugin.__init__(self, flow, reporting, dependencies, path) + def __init__(self, *args, **kwargs): + Plugin.__init__(self, *args, **kwargs) self.tests = [] def prepare(self): |