From f65be31c18a00cd1ff2e1eea8f9596da8d084c75 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Tue, 8 Jul 2014 22:28:22 +0100 Subject: [abrt] option_list style fixes Signed-off-by: Bryn M. Reeves --- sos/plugins/abrt.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sos/plugins/abrt.py b/sos/plugins/abrt.py index 40437b39..d6fda0ba 100644 --- a/sos/plugins/abrt.py +++ b/sos/plugins/abrt.py @@ -25,8 +25,9 @@ class Abrt(Plugin, RedHatPlugin): packages = ('abrt-cli',) files = ('/var/spool/abrt',) - option_list = [("backtraces", 'collect backtraces for every report', - 'slow', False)] + option_list = [ + ("backtraces", 'collect backtraces for every report', 'slow', False) + ] def do_backtraces(self): result = self.call_ext_prog('sqlite3 ' -- cgit