diff options
| author | Lu lei <lei.lu@easystack.cn> | 2016-06-06 13:40:43 +0800 |
|---|---|---|
| committer | Lu lei <lei.lu@easystack.cn> | 2016-06-06 13:54:55 +0800 |
| commit | 54e81a9984fc9558461a45807188b6892a7b97ce (patch) | |
| tree | 4258d7fbedde1a6a368a56c3e4c8b5d9569d20df /openstackclient/common | |
| parent | 93db7f58edf8e1157eacfc22f2b880c4edd91764 (diff) | |
| download | python-openstackclient-54e81a9984fc9558461a45807188b6892a7b97ce.tar.gz | |
Add newline to strings in stdout/stderr.write()
Function stdout/stderr.write() can't break line automatically.
Change-Id: I903c2d1cc1a669adb6be5aa4eb783d3b9943e685
Diffstat (limited to 'openstackclient/common')
| -rw-r--r-- | openstackclient/common/quota.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
