Don't display *** for pw variables if variable has "".

develop
Mike Hiretsky 12 years ago
parent ad4c8eb252
commit 2792ef4cda

@ -673,7 +673,7 @@ class DataVars(object):
" " + _("Mode") + " " +_("Value"))
cl_overriding.printSUCCESS(br)
for i in plist:
if i.endswith("_pw"):
if i.endswith("_pw") and varsDict[i].value:
p_val = "***"
else:
p_val=varsDict[i].value

Loading…
Cancel
Save