Merge "Add newline to strings in stdout/stderr.write()"

This commit is contained in:
Jenkins
2016-09-30 08:31:07 +00:00
committed by Gerrit Code Review

View File

@@ -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 {}, {}