diff --git a/cinderclient/v1/volume_types.py b/cinderclient/v1/volume_types.py index 12c4612..e8b2c39 100644 --- a/cinderclient/v1/volume_types.py +++ b/cinderclient/v1/volume_types.py @@ -80,7 +80,7 @@ class VolumeTypeManager(base.ManagerWithFind): """ resource_class = VolumeType - def list(self): + def list(self, search_opts=None): """ Get a list of all volume types. diff --git a/cinderclient/v2/volume_types.py b/cinderclient/v2/volume_types.py index bc382bd..3d76302 100644 --- a/cinderclient/v2/volume_types.py +++ b/cinderclient/v2/volume_types.py @@ -70,7 +70,7 @@ class VolumeTypeManager(base.ManagerWithFind): """Manage :class:`VolumeType` resources.""" resource_class = VolumeType - def list(self): + def list(self, search_opts=None): """Get a list of all volume types. :rtype: list of :class:`VolumeType`. diff --git a/doc/source/index.rst b/doc/source/index.rst index 0a299bb..44cc757 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -34,6 +34,7 @@ MASTER .. _1254951: http://bugs.launchpad.net/python-cinderclient/+bug/1254951 .. _1254587: http://bugs.launchpad.net/python-cinderclient/+bug/1254587 .. _1253142: http://bugs.launchpad.net/python-cinderclient/+bug/1253142 +.. _1252665: http://bugs.launchpad.net/python-cinderclient/+bug/1252665 1.0.7 -----