diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2015-12-18 17:17:43 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-12-18 17:17:43 +0000 |
commit | 7799b1bff7a3faa609752152198e72c149983e94 (patch) | |
tree | 54ae83a8a2f22126ad5ea6bf5c9d1503636eb315 | |
parent | 43dd41e4f0872e3a9258cd0a0a9d13e3b76a3e1c (diff) | |
download | sos-7799b1bff7a3faa609752152198e72c149983e94.tar.gz |
[apache] fix files list style
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/apache.py | 8 |
1 files 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() |