From 287d6ad2abe01868f01a4e587d08f5b03b2ec1bb Mon Sep 17 00:00:00 2001 From: Suresh Balakrishnan Date: Wed, 28 Sep 2016 08:40:19 -0400 Subject: [PATCH] Bug 63 - Avoid newline in Openmano instance create cloud config yaml Signed-off-by: Suresh Balakrishnan --- .../plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py b/rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py index bdd5b321..5f30493b 100644 --- a/rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py +++ b/rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py @@ -390,8 +390,7 @@ class OpenmanoNsr(object): if ip_profile: openmano_instance_create["networks"][vld_msg.name]['ip-profile'] = ip_profile - - return yaml.safe_dump(openmano_instance_create, default_flow_style=False) + return yaml.safe_dump(openmano_instance_create, default_flow_style=False,width=1000) @asyncio.coroutine def add_vlr(self, vlr): -- 2.25.1