summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/group.py
diff options
context:
space:
mode:
authorLu lei <lei.lu@easystack.cn>2016-06-06 13:40:43 +0800
committerLu lei <lei.lu@easystack.cn>2016-06-06 13:54:55 +0800
commit54e81a9984fc9558461a45807188b6892a7b97ce (patch)
tree4258d7fbedde1a6a368a56c3e4c8b5d9569d20df /openstackclient/identity/v3/group.py
parent93db7f58edf8e1157eacfc22f2b880c4edd91764 (diff)
downloadpython-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/identity/v3/group.py')
-rw-r--r--openstackclient/identity/v3/group.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/identity/v3/group.py b/openstackclient/identity/v3/group.py
index 3c243531..8fb8a047 100644
--- a/openstackclient/identity/v3/group.py
+++ b/openstackclient/identity/v3/group.py
@@ -318,7 +318,7 @@ class SetGroup(command.Command):
kwargs['description'] = parsed_args.description
if not len(kwargs):
- sys.stderr.write("Group not updated, no arguments present")
+ sys.stderr.write("Group not updated, no arguments present\n")
return
identity_client.groups.update(group.id, **kwargs)