diff options
-rw-r--r-- | sos/plugins/named.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/named.py b/sos/plugins/named.py index a3f6b003..83567ab2 100644 --- a/sos/plugins/named.py +++ b/sos/plugins/named.py @@ -47,7 +47,7 @@ class Named(Plugin): def postproc(self): match = r"(\s*arg \"password )[^\"]*" subst = r"\1******" - self.do_file_sub(named_conf, match, subst) + self.do_file_sub(self.named_conf, match, subst) class RedHatNamed(Named, RedHatPlugin): |