From 54e81a9984fc9558461a45807188b6892a7b97ce Mon Sep 17 00:00:00 2001 From: Lu lei Date: Mon, 6 Jun 2016 13:40:43 +0800 Subject: Add newline to strings in stdout/stderr.write() Function stdout/stderr.write() can't break line automatically. Change-Id: I903c2d1cc1a669adb6be5aa4eb783d3b9943e685 --- openstackclient/common/quota.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openstackclient/common') diff --git a/openstackclient/common/quota.py b/openstackclient/common/quota.py index e177fbce..f85d550b 100644 --- a/openstackclient/common/quota.py +++ b/openstackclient/common/quota.py @@ -142,7 +142,7 @@ class SetQuota(command.Command): if (compute_kwargs == {} and volume_kwargs == {} and network_kwargs == {}): - sys.stderr.write("No quotas updated") + sys.stderr.write("No quotas updated\n") return if parsed_args.project: -- cgit v1.2.1