diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-03-29 09:51:02 -0400 |
|---|---|---|
| committer | Brian Lamar <brian.lamar@rackspace.com> | 2011-03-29 09:51:02 -0400 |
| commit | c4c9c0e5b70305ac06494bde35fcd18fdf60798e (patch) | |
| tree | 93b9b5a5029f09ecdf98272efedfeba8bd149eb0 | |
| parent | 4738400abc226bd7231760054eae3ef0e8f9c252 (diff) | |
| download | nova-c4c9c0e5b70305ac06494bde35fcd18fdf60798e.tar.gz nova-c4c9c0e5b70305ac06494bde35fcd18fdf60798e.tar.xz nova-c4c9c0e5b70305ac06494bde35fcd18fdf60798e.zip | |
Tweaking docstrings just in case.
| -rw-r--r-- | nova/api/openstack/images.py | 3 | ||||
| -rw-r--r-- | nova/api/openstack/views/images.py | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/nova/api/openstack/images.py b/nova/api/openstack/images.py index ad748b4ca..d672e3a0e 100644 --- a/nova/api/openstack/images.py +++ b/nova/api/openstack/images.py @@ -32,8 +32,7 @@ FLAGS = flags.FLAGS class Controller(wsgi.Controller): - """Base `wsgi.Controller` for retrieving and displaying images in the - OpenStack API. Version-inspecific code goes here.""" + """Base `wsgi.Controller` for retrieving/displaying images.""" _serialization_metadata = { 'application/xml': { diff --git a/nova/api/openstack/views/images.py b/nova/api/openstack/views/images.py index 8f5568f6c..3807fa95f 100644 --- a/nova/api/openstack/views/images.py +++ b/nova/api/openstack/views/images.py @@ -19,8 +19,7 @@ import os.path class ViewBuilder(object): - """Base class for generating responses to OpenStack API requests for - information about images.""" + """Base class for generating responses to OpenStack API image requests.""" def __init__(self, base_url): """Initialize new `ViewBuilder`.""" |
