diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2019-10-09 12:18:59 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-10-09 12:18:59 +0100 |
commit | c4d06c5fa458d1bc2392270015c2fe077c4afca8 (patch) | |
tree | ee62c11c0a30f7a4b3ef49c7d8aead514bbfb185 | |
parent | f1970fc91aee72343a2114398094b43c8700b640 (diff) | |
download | sos-c4d06c5fa458d1bc2392270015c2fe077c4afca8.tar.gz |
[Plugin] fix else clause indentation
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index fda8fa29..40a54c29 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -800,8 +800,8 @@ class Plugin(object): value = (defaulttype)(value) parms['enabled'] = value return True - else: - return False + else: + return False def get_option(self, optionname, default=0): """Returns the first value that matches 'optionname' in parameters |