From 7799b1bff7a3faa609752152198e72c149983e94 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Fri, 18 Dec 2015 17:17:43 +0000 Subject: [apache] fix files list style Signed-off-by: Bryn M. Reeves --- sos/plugins/apache.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sos/plugins/apache.py b/sos/plugins/apache.py index f7133026..5a12e32c 100644 --- a/sos/plugins/apache.py +++ b/sos/plugins/apache.py @@ -31,9 +31,11 @@ class Apache(Plugin): class RedHatApache(Apache, RedHatPlugin): - files = ('/etc/httpd/conf/httpd.conf', - '/etc/httpd22/conf/httpd.conf', - '/etc/httpd24/conf/httpd.conf') + files = ( + '/etc/httpd/conf/httpd.conf', + '/etc/httpd22/conf/httpd.conf', + '/etc/httpd24/conf/httpd.conf' + ) def setup(self): super(RedHatApache, self).setup() -- cgit