From: Accela Zhao Date: Tue, 6 Jan 2015 05:36:35 +0000 (+0800) Subject: Fix the continuation line indent to pass flake8 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b624982daf442c2419654d459bc3678cd7cadb93;p=openstack-build%2Fcinder-build.git Fix the continuation line indent to pass flake8 The flake8 complains "E128 continuation line under-indented for visual indent" on cinder/tests/api/contrib/test_types_manage.py line 270. The continuation line should be indented to the opening parentheses. This patch fixes the indention. Change-Id: I8330e2580863ed4d53b5607c25fc5317c5a166b9 --- diff --git a/cinder/tests/api/contrib/test_types_manage.py b/cinder/tests/api/contrib/test_types_manage.py index fadc96bf5..07901289e 100644 --- a/cinder/tests/api/contrib/test_types_manage.py +++ b/cinder/tests/api/contrib/test_types_manage.py @@ -267,4 +267,4 @@ class VolumeTypesManageApiTest(test.TestCase): results['volume_type']['description']) if expected_results.get('expected_name'): self.assertEqual(expected_results['expected_name'], - results['volume_type']['name']) \ No newline at end of file + results['volume_type']['name'])