diff options
| author | Monty Taylor <mordred@inaugust.com> | 2013-05-14 08:28:48 -0700 |
|---|---|---|
| committer | Monty Taylor <mordred@inaugust.com> | 2013-05-14 08:28:48 -0700 |
| commit | 016a0b301e0ecfea5d84b09e7f1e22a86953c1c1 (patch) | |
| tree | 8e97f2e2c69a1e4ec2f63ee4a417abaec7337f82 /openstackclient/identity/v3/group.py | |
| parent | d6c760263b5a7f77bbb35e31f92dd5a9140278ee (diff) | |
| download | python-openstackclient-016a0b301e0ecfea5d84b09e7f1e22a86953c1c1.tar.gz | |
Fix flake8 errors in anticipation of flake8 patch.
Change-Id: Ifdc4322b699f2bd91a6900e55695acd3d736568e
Diffstat (limited to 'openstackclient/identity/v3/group.py')
| -rw-r--r-- | openstackclient/identity/v3/group.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/identity/v3/group.py b/openstackclient/identity/v3/group.py index 3a9b80ed..0562b766 100644 --- a/openstackclient/identity/v3/group.py +++ b/openstackclient/identity/v3/group.py @@ -16,6 +16,7 @@ """Group action implementations""" import logging +import sys from cliff import command from cliff import lister @@ -157,7 +158,7 @@ class SetGroup(command.Command): kwargs['domain'] = domain if not len(kwargs): - stdout.write("Group not updated, no arguments present") + sys.stdout.write("Group not updated, no arguments present") return identity_client.groups.update(group.id, **kwargs) return |
