diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-12 18:42:09 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-12 18:42:09 +0100 |
commit | 419c50eadc647ac6d1d3edc34b14ed8303906a67 (patch) | |
tree | 603f08019ba64e588725d406139f98919940edf4 | |
parent | 2074a1682ad18704fcefc74e88850203a0672cf3 (diff) | |
download | sos-419c50eadc647ac6d1d3edc34b14ed8303906a67.tar.gz |
[plugin] ensure Plugin has an 'archive' member
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index 0c745249..3e8d9f0b 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -95,6 +95,7 @@ class Plugin(object): version = 'unversioned' packages = () files = () + archive = None def __init__(self, commons): if not getattr(self, "option_list", False): |