From 016a0b301e0ecfea5d84b09e7f1e22a86953c1c1 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 14 May 2013 08:28:48 -0700 Subject: Fix flake8 errors in anticipation of flake8 patch. Change-Id: Ifdc4322b699f2bd91a6900e55695acd3d736568e --- openstackclient/volume/v1/quota.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openstackclient/volume/v1') diff --git a/openstackclient/volume/v1/quota.py b/openstackclient/volume/v1/quota.py index ae6c50f5..4f4e97e8 100644 --- a/openstackclient/volume/v1/quota.py +++ b/openstackclient/volume/v1/quota.py @@ -16,6 +16,7 @@ """Volume v1 Quota action implementations""" import logging +import sys from cliff import command from cliff import show @@ -79,7 +80,7 @@ class SetQuota(command.Command): kwargs['gigabytes'] = parsed_args.gigabytes if kwargs == {}: - stdout.write("Quota not updated, no arguments present") + sys.stdout.write("Quota not updated, no arguments present") return volume_client = self.app.client_manager.volume -- cgit v1.2.1