X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=osmclient%2Fscripts%2Fosm.py;fp=osmclient%2Fscripts%2Fosm.py;h=3a060778906aeee89baea7543305f4887bd28170;hb=2dc2cfbd5e667f8adf32e8d8161297fc9afc0d8c;hp=45ae5e71eb67a19c6b8e477b46e3d57c89b470da;hpb=ab51ef7a920bfb6d036d18ae5f3063a0d780cab2;p=osm%2Fosmclient.git diff --git a/osmclient/scripts/osm.py b/osmclient/scripts/osm.py index 45ae5e7..3a06077 100755 --- a/osmclient/scripts/osm.py +++ b/osmclient/scripts/osm.py @@ -1122,8 +1122,6 @@ def nfpkg_create(ctx, filename, overwrite): prompt=True, help='name of the NS descriptor') @click.option('--vim_account', prompt=True, help='default VIM account id or name for the deployment') -@click.option('--wim_account', - default=None, help='default WIM account for intersite connectivity. False to not use a WIM') @click.option('--admin_status', default='ENABLED', help='administration status') @@ -1141,7 +1139,6 @@ def ns_create(ctx, nsd_name, ns_name, vim_account, - wim_account, admin_status, ssh_keys, config, @@ -1159,10 +1156,9 @@ def ns_create(ctx, ns_name, config=config, ssh_keys=ssh_keys, - account=vim_account, - wim_account=wim_account) + account=vim_account) except ClientException as inst: - print((inst.message)) + print(inst.message) exit(1)