Merge "Fix :param: in docstring"

This commit is contained in:
Zuul 2019-06-17 05:25:45 +00:00 committed by Gerrit Code Review
commit e0d3893f55
1 changed files with 3 additions and 3 deletions

View File

@ -140,10 +140,10 @@ class LibvirtBaseVolumeDriver(object):
def extend_volume(self, connection_info, instance, requested_size):
"""Extend the volume.
:param: connection_info: connection information about the volume
:param connection_info: connection information about the volume
that has been extended.
:param: instance: instance connected to the newly extended volume.
:param: requested_size: new extended size (in bytes) for the volume to
:param instance: instance connected to the newly extended volume.
:param requested_size: new extended size (in bytes) for the volume to
be extended.
:returns: the new size to use when resizing the disk in QEMU.