From: garciadeblas Date: Thu, 13 Feb 2020 11:20:46 +0000 (+0000) Subject: fix minor issue in nsd_create2 params used by nspkg-create X-Git-Tag: v7.1.0rc1^2~25 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fosmclient.git;a=commitdiff_plain;h=391ba97c72376a135fcb6d024a513cf2f0c2fe08 fix minor issue in nsd_create2 params used by nspkg-create Change-Id: I0b5835da151bac5a719c57f1fc0e7f7526df94e2 Signed-off-by: garciadeblas --- diff --git a/osmclient/scripts/osm.py b/osmclient/scripts/osm.py index 8cde343..5c6d3ba 100755 --- a/osmclient/scripts/osm.py +++ b/osmclient/scripts/osm.py @@ -1414,13 +1414,13 @@ def nsd_create1(ctx, filename, overwrite, skip_charm_build): @click.option('--skip-charm-build', default=False, is_flag=True, help='The charm will not be compiled, it is assumed to already exist') @click.pass_context -def nsd_create2(ctx, charm_folder, overwrite, skip_charm_build): +def nsd_create2(ctx, filename, overwrite, skip_charm_build): """creates a new NSD/NSpkg FILENAME: NSD folder, NSD yaml file or NSpkg tar.gz file """ logger.debug("") - nsd_create(ctx, charm_folder, overwrite=overwrite, skip_charm_build=skip_charm_build) + nsd_create(ctx, filename, overwrite=overwrite, skip_charm_build=skip_charm_build) def vnfd_create(ctx, filename, overwrite, skip_charm_build):