From: gifrerenom Date: Mon, 28 Feb 2022 09:49:11 +0000 (+0000) Subject: Fix bug 2153 to hide WIM password properly in command wim-show X-Git-Tag: release-v13.0-start~7 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=e81ceb65a5517b3d2aef06fab7c89b23de318029;p=osm%2Fosmclient.git Fix bug 2153 to hide WIM password properly in command wim-show Change-Id: Ia3832d034d58895bb3096517e3a02ea19b75edf5 Signed-off-by: gifrerenom --- diff --git a/osmclient/scripts/osm.py b/osmclient/scripts/osm.py index f68fb0c..02870e4 100755 --- a/osmclient/scripts/osm.py +++ b/osmclient/scripts/osm.py @@ -3614,7 +3614,7 @@ def wim_show(ctx, name): check_client_version(ctx.obj, ctx.command.name) resp = ctx.obj.wim.get(name) if "password" in resp: - resp["wim_password"] = "********" + resp["password"] = "********" # except ClientException as e: # print(str(e)) # exit(1)