From: gifrerenom Date: Mon, 28 Feb 2022 09:49:11 +0000 (+0000) Subject: Fix bug 1886 to hide WIM password properly in command wim-show X-Git-Tag: v10.1.0rc3^0 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=inline;h=d0a0da84bf772a599ff42340517f7d1c871ee677;p=osm%2Fosmclient.git Fix bug 1886 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 507df02..c73be1f 100755 --- a/osmclient/scripts/osm.py +++ b/osmclient/scripts/osm.py @@ -3572,7 +3572,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)