| commit | 96cb4393f12a5116a4eb7bd2f5daad051ab75e9e | [log] [tgz] |
|---|---|---|
| author | garciadeblas <gerardo.garciadeblas@telefonica.com> | Thu May 03 18:53:41 2018 +0200 |
| committer | garciadeblas <gerardo.garciadeblas@telefonica.com> | Thu May 03 18:53:41 2018 +0200 |
| tree | 74e091d757e390fdad22160f280dd68d17a45a70 | |
| parent | a7acd72ae8c0254fb74b3cfa7ec50b52794468bd [diff] |
osm.py: obfuscating vim password Change-Id: I931aae31c5670990428a3c61c4787a94723d5883 Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/osmclient/scripts/osm.py b/osmclient/scripts/osm.py index 2a321fc..b98bc9e 100755 --- a/osmclient/scripts/osm.py +++ b/osmclient/scripts/osm.py
@@ -866,6 +866,8 @@ ''' try: resp = ctx.obj.vim.get(name) + if 'vim_password' in resp: + resp['vim_password']='********' except ClientException as inst: print(inst.message) exit(1)