Bug 63 - Avoid newline in Openmano instance create cloud config yaml
Signed-off-by: Suresh Balakrishnan <suresh.balakrishnan@riftio.com>
diff --git a/rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py b/rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py
index bdd5b32..5f30493 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 @@
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):