diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:30:47 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 22:30:47 +0100 |
commit | 74717f4e87cb67c518ae30642999caf819c4cc63 (patch) | |
tree | 34cf5909e228aca666075bc25e9c5c43a546bdd4 | |
parent | 3bcabf33c6b2401c124d506a90e9dd2b0e32d9a3 (diff) | |
download | sos-74717f4e87cb67c518ae30642999caf819c4cc63.tar.gz |
[boot] option_list style fixes
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/boot.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sos/plugins/boot.py b/sos/plugins/boot.py index 194b47e3..0388c02c 100644 --- a/sos/plugins/boot.py +++ b/sos/plugins/boot.py @@ -21,9 +21,9 @@ class Boot(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): plugin_name = 'boot' - option_list = [("all-images", - "collect a file listing for all initramfs images", "slow", - False)] + option_list = [ + ("all-images", "collect lsinitrd for all images", "slow", False) + ] def setup(self): self.add_copy_specs([ |