diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2015-10-15 12:48:17 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-10-15 12:48:17 +0100 |
commit | 7da50d6ee5afce577f02339fdc285891c8485bc0 (patch) | |
tree | 15d3f2e2742ebff2da1861a005a39d1cb805aac5 | |
parent | f4da66aeda8ca44621a9bdef14a46f52bc24ac98 (diff) | |
download | sos-7da50d6ee5afce577f02339fdc285891c8485bc0.tar.gz |
[insights] stray whitespace fixes from previous commit
-rw-r--r-- | sos/plugins/insights.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sos/plugins/insights.py b/sos/plugins/insights.py index 3bbbb5f6..a4b87807 100644 --- a/sos/plugins/insights.py +++ b/sos/plugins/insights.py @@ -27,17 +27,17 @@ class RedHatAccessInsights(Plugin, RedHatPlugin): log_size = self.get_option('log_size') self.add_copy_spec(self.conf_file) self.add_copy_spec_limit('/var/log/redhat-access-insights/*.log', - sizelimit=log_size) + sizelimit=log_size) def postproc(self): self.do_file_sub( self.conf_file, r'(password[\t\ ]*=[\t\ ]*)(.+)', r'\1********' - ) + ) self.do_file_sub( self.conf_file, r'(proxy[\t\ ]*=.*)(:)(.*)(@.*)', r'\1\2********\4' - ) + ) |