From: David Garcia Date: Wed, 4 Dec 2019 13:01:50 +0000 (+0100) Subject: Fix Bug 948: Remove "/" from charm's artifact_path X-Git-Tag: v7.0.0rc1~9 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FLCM.git;a=commitdiff_plain;h=485b29173db188063464c74773f76ab4daf9d701 Fix Bug 948: Remove "/" from charm's artifact_path Change-Id: I16a0926b01996e0c81172fcd552058be41edb14d Signed-off-by: David Garcia --- diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index 21c3d57..6a4b47f 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -989,7 +989,7 @@ class NsLcm(LcmBase): namespace += ".{}-{}".format(vdu_id, vdu_index or 0) # Get artifact path - artifact_path = "/{}/{}/charms/{}".format( + artifact_path = "{}/{}/charms/{}".format( base_folder["folder"], base_folder["pkg-dir"], config_descriptor["juju"]["charm"]