[DOC BLD FIX] Fix docstring issues in hpmsa driver

There were poorly formatted docstrings in the hpmsa
driver that caused Sphinx to generate WARNINGs when
run.  This patch fixes those issues.

Change-Id: Iafe30fc961e02e4976ffcbf0b2d4c0759cce15ae
This commit is contained in:
Jay S. Bryant 2017-07-26 11:09:34 -05:00
parent 5134cf1361
commit cd49f55f9f
2 changed files with 14 additions and 8 deletions
cinder/volume/drivers/san/hp

@ -24,10 +24,13 @@ from cinder.volume.drivers.san.hp import hpmsa_common
class HPMSAFCDriver(dothill_fc.DotHillFCDriver):
"""OpenStack Fibre Channel cinder drivers for HPMSA arrays.
Version history:
1.0 - Inheriting from DotHill cinder drivers.
1.6 - Add management path redundancy and reduce load placed
on management controller.
.. code-block:: default
Version history:
1.0 - Inheriting from DotHill cinder drivers.
1.6 - Add management path redundancy and reduce load placed
on management controller.
"""
VERSION = "1.6"

@ -24,10 +24,13 @@ from cinder.volume.drivers.san.hp import hpmsa_common
class HPMSAISCSIDriver(dothill_iscsi.DotHillISCSIDriver):
"""OpenStack iSCSI cinder drivers for HPMSA arrays.
Version history:
1.0 - Inheriting from DotHill cinder drivers.
1.6 - Add management path redundancy and reduce load placed
on management controller.
.. code-block:: default
Version history:
1.0 - Inheriting from DotHill cinder drivers.
1.6 - Add management path redundancy and reduce load placed
on management controller.
"""
VERSION = "1.6"