~nova-coresec/nova/bexar-translations

« back to all changes in this revision

Viewing changes to nova/api/rackspace/images.py

Move imageservice to its own directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
from nova import datastore
19
19
from nova.api.rackspace import base
20
 
from nova.api.services import image
 
20
from nova import image
21
21
from webob import exc
22
22
 
23
23
class Controller(base.Controller):
32
32
    }
33
33
 
34
34
    def __init__(self):
35
 
        self._service = image.ImageService.load()
 
35
        self._service = image.service.ImageService.load()
36
36
        self._id_translator = RackspaceAPIImageIdTranslator()
37
37
 
38
38
    def _to_rs_id(self, image_id):