From f7b606254e86bc1c171e69a64fdb8e48a8169bb1 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Tue, 8 Jul 2014 22:31:03 +0100 Subject: [ceph] option_list style fixes Signed-off-by: Bryn M. Reeves --- sos/plugins/ceph.py | 18 +++++++++++------- 1 file 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([ -- cgit