Fix :param: in docstring

In docstring :param should be used instead of :param:.

Change-Id: I366b5cc5c90ec654839deda4104605a0275374ef
This commit is contained in:
zhufl 2019-06-14 11:54:40 +08:00
parent 25262103da
commit 285e0ad746
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.