diff options
| author | William Wolf <throughnothing@gmail.com> | 2011-05-20 11:50:00 -0400 |
|---|---|---|
| committer | William Wolf <throughnothing@gmail.com> | 2011-05-20 11:50:00 -0400 |
| commit | f1da26ec9af6f6adffb7b6bfdc64f9702db93b56 (patch) | |
| tree | c76f2ad24c962c64a09e52a599c54f2698d814c8 /nova/api | |
| parent | 0f191404fee42b9225f364af12242812798ff08a (diff) | |
fix pep8 issue
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/images.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/api/openstack/images.py b/nova/api/openstack/images.py index 2a3f9e070..5508e7d50 100644 --- a/nova/api/openstack/images.py +++ b/nova/api/openstack/images.py @@ -50,7 +50,8 @@ class Controller(common.OpenstackController): """ self._compute_service = compute_service or compute.API() - self._image_service = image_service or utils.get_default_image_service() + self._image_service = image_service or \ + utils.get_default_image_service() def index(self, req): """Return an index listing of images available to the request. |
