diff --git a/lib/core/common.py b/lib/core/common.py index 5f2a0a95a..42d983c2b 100755 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -3027,7 +3027,6 @@ def maskSensitiveData(msg): if match: retVal = retVal.replace(match.group(3), '*' * len(match.group(3))) - if getpass.getuser(): retVal = re.sub(r"(?i)\b%s\b" % re.escape(getpass.getuser()), "*" * len(getpass.getuser()), retVal)