Skip to content

Commit

Permalink
Fix extraneous comma that breaks docbook generation
Browse files Browse the repository at this point in the history
There is a stray comma in the middle of the help section that changes
the string to a tuple, causing docbook to fail with:

   td.text = "(%s) %s" % (type(option).__name__, option.help.strip())
AttributeError: 'tuple' object has no attribute 'strip'

Change-Id: I8f03801fe5463548e3bba1b13e0370fd30ac9927
  • Loading branch information
anish committed Feb 18, 2015
1 parent 260701b commit a93eb59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cinder/volume/drivers/remotefs.py
Expand Up @@ -74,7 +74,7 @@
'otherwise False. Default is auto.')), 'otherwise False. Default is auto.')),
cfg.StrOpt('nas_share_path', cfg.StrOpt('nas_share_path',
default='', default='',
help=('Path to the share to use for storing Cinder volumes. ', help=('Path to the share to use for storing Cinder volumes. '
'For example: "/srv/export1" for an NFS server export ' 'For example: "/srv/export1" for an NFS server export '
'available at 10.0.5.10:/srv/export1 .')), 'available at 10.0.5.10:/srv/export1 .')),
cfg.StrOpt('nas_mount_options', cfg.StrOpt('nas_mount_options',
Expand Down

0 comments on commit a93eb59

Please sign in to comment.