diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:31:03 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:31:03 +0100 |
commit | f7b606254e86bc1c171e69a64fdb8e48a8169bb1 (patch) | |
tree | d4dbc71cb0207a4125a4415fc90828ff3a3eba6c | |
parent | 74717f4e87cb67c518ae30642999caf819c4cc63 (diff) | |
download | sos-f7b606254e86bc1c171e69a64fdb8e48a8169bb1.tar.gz |
[ceph] option_list style fixes
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/ceph.py | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sos/plugins/ceph.py b/sos/plugins/ceph.py index e58e0f71..57797802 100644 --- a/sos/plugins/ceph.py +++ b/sos/plugins/ceph.py @@ -19,13 +19,17 @@ class Ceph(Plugin, RedHatPlugin, UbuntuPlugin): """ plugin_name = 'ceph' - option_list = [("log", "gathers all ceph logs", "slow", False)] - - packages = ('ceph', - 'ceph-mds', - 'ceph-common', - 'libcephfs1', - 'ceph-fs-common') + option_list = [ + ("log", "gathers all ceph logs", "slow", False) + ] + + packages = ( + 'ceph', + 'ceph-mds', + 'ceph-common', + 'libcephfs1', + 'ceph-fs-common' + ) def setup(self): self.add_copy_specs([ |