From 485b29173db188063464c74773f76ab4daf9d701 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Wed, 4 Dec 2019 14:01:50 +0100 Subject: [PATCH] Fix Bug 948: Remove "/" from charm's artifact_path Change-Id: I16a0926b01996e0c81172fcd552058be41edb14d Signed-off-by: David Garcia --- osm_lcm/ns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"] -- 2.17.1