aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/vnf/ims/orchestrator.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-12-05 14:44:51 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-05 14:44:51 +0000
commit4d8205412586812dc9523988aad66cf9e000e31e (patch)
tree198f4976bb1f0263e41cb1a1cd9d4db4439914c3 /functest/opnfv_tests/vnf/ims/orchestrator.py
parent122445d0b7b3836a3617905ab1c293412983c394 (diff)
parentd13fac5935bb3fe573dc9a79e06b8cffde37712e (diff)
Merge "Fix Pep8 issues related to \"
Diffstat (limited to 'functest/opnfv_tests/vnf/ims/orchestrator.py')
-rw-r--r--functest/opnfv_tests/vnf/ims/orchestrator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/vnf/ims/orchestrator.py b/functest/opnfv_tests/vnf/ims/orchestrator.py
index 5f84df00..f3838f87 100644
--- a/functest/opnfv_tests/vnf/ims/orchestrator.py
+++ b/functest/opnfv_tests/vnf/ims/orchestrator.py
@@ -138,8 +138,8 @@ class Orchestrator:
bp_name, dep_name):
self.logger.info("Downloading the {0} blueprint".format(
blueprint['file_name']))
- destination_folder = self.testcase_dir + \
- blueprint['destination_folder']
+ destination_folder = os.path.join(self.testcase_dir,
+ blueprint['destination_folder'])
download_result = self._download_blueprints(blueprint['url'],
blueprint['branch'],
destination_folder)