diff options
| author | Eric Day <eday@oddments.org> | 2010-11-18 21:27:00 -0800 |
|---|---|---|
| committer | Eric Day <eday@oddments.org> | 2010-11-18 21:27:00 -0800 |
| commit | 9c7ddf24acfdbdb220bcc56d8e4d6421cd46e1d7 (patch) | |
| tree | c18422c816ef41c3e29b77a09577d57153f2b17b /nova/image | |
| parent | 8e1b88cc228f9ed55c3b6e4fdd790a572d63e6fe (diff) | |
| download | nova-9c7ddf24acfdbdb220bcc56d8e4d6421cd46e1d7.tar.gz nova-9c7ddf24acfdbdb220bcc56d8e4d6421cd46e1d7.tar.xz nova-9c7ddf24acfdbdb220bcc56d8e4d6421cd46e1d7.zip | |
PEP8 fixes, 2 lines were too long.
Diffstat (limited to 'nova/image')
| -rw-r--r-- | nova/image/s3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/image/s3.py b/nova/image/s3.py index ba1086aca..0a25161de 100644 --- a/nova/image/s3.py +++ b/nova/image/s3.py @@ -42,7 +42,8 @@ class S3ImageService(service.BaseImageService): self._conn(context).make_request( method='POST', bucket='_images', - query_args=self._qs({'image_id': image_id, 'operation': operation})) + query_args=self._qs({'image_id': image_id, + 'operation': operation})) return True def update(self, context, image_id, attributes): |
