diff options
| author | Dan Prince <dan.prince@rackspace.com> | 2011-03-24 12:57:49 -0400 |
|---|---|---|
| committer | Dan Prince <dan.prince@rackspace.com> | 2011-03-24 12:57:49 -0400 |
| commit | a69f6ef093805d74832a9dd531e55dd614dfa71c (patch) | |
| tree | 996d8925d53848627d8074a67acbbd3472651dda /nova/api | |
| parent | d91102e1ce73b5b2e1f5fbcc380814f1673cefa3 (diff) | |
Docstring fixes.
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/image_metadata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/image_metadata.py b/nova/api/openstack/image_metadata.py index 5ca349af1..e09952967 100644 --- a/nova/api/openstack/image_metadata.py +++ b/nova/api/openstack/image_metadata.py @@ -27,7 +27,7 @@ FLAGS = flags.FLAGS class Controller(wsgi.Controller): - """ The image metadata API controller for the Openstack API """ + """The image metadata API controller for the Openstack API""" def __init__(self): self.image_service = utils.import_object(FLAGS.image_service) @@ -42,7 +42,7 @@ class Controller(wsgi.Controller): return metadata def index(self, req, image_id): - """ Returns the list of metadata for a given instance """ + """Returns the list of metadata for a given instance""" context = req.environ['nova.context'] metadata = self._get_metadata(context, image_id) return dict(metadata=metadata) |
