]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix docstring for snapshots API
authorTom Fifield <tom@openstack.org>
Thu, 26 Jun 2014 06:18:59 +0000 (14:18 +0800)
committerTom Fifield <tom@openstack.org>
Thu, 26 Jun 2014 06:20:22 +0000 (14:20 +0800)
For some reason, the snapshots controller class' introductory
docstring stated that it was the volume API controller.
This patch changes it to say:
"The Snapshots API controller for the OpenStack API."

Change-Id: I8c9827939bbc7acf93282db854a40501f3fea399

cinder/api/v1/snapshots.py
cinder/api/v2/snapshots.py

index 1e441114341468e6c7ba3a2f77ff8272c62e6458..66e540211c5604c4600ab20aa1ef68e093871f30 100644 (file)
@@ -93,7 +93,7 @@ class SnapshotsTemplate(xmlutil.TemplateBuilder):
 
 
 class SnapshotsController(wsgi.Controller):
-    """The Volumes API controller for the OpenStack API."""
+    """The Snapshots API controller for the OpenStack API."""
 
     def __init__(self, ext_mgr=None):
         self.volume_api = volume.API()
index bc74d58fdfe9609b96a14582d650db1ea7025232..1d7bbd20fa45473cb58109ff175df5393b969df2 100644 (file)
@@ -93,7 +93,7 @@ class SnapshotsTemplate(xmlutil.TemplateBuilder):
 
 
 class SnapshotsController(wsgi.Controller):
-    """The Volumes API controller for the OpenStack API."""
+    """The Snapshots API controller for the OpenStack API."""
 
     def __init__(self, ext_mgr=None):
         self.volume_api = volume.API()