From 1a4098fe14c897b5a495575f02f9ff4793daccc8 Mon Sep 17 00:00:00 2001 From: Shu Yingya Date: Mon, 26 Sep 2016 10:49:04 +0800 Subject: [PATCH] Add newline to strings in stdout/stderr.write() Change-Id: Idef39f0ed6fe20eac4f2944ddba2ca884600d82e --- saharaclient/osc/v1/clusters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/saharaclient/osc/v1/clusters.py b/saharaclient/osc/v1/clusters.py index d5fa60d2..eb408340 100644 --- a/saharaclient/osc/v1/clusters.py +++ b/saharaclient/osc/v1/clusters.py @@ -657,7 +657,7 @@ class VerificationUpdateCluster(command.ShowOne): print_status = 'started' sys.stdout.write( 'Cluster "{cluster}" health verification has been ' - '{status}.'.format(cluster=parsed_args.cluster, - status=print_status)) + '{status}.\n'.format(cluster=parsed_args.cluster, + status=print_status)) return {}, {}