diff options
-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() |