Merge "[autohelp] Update opt types"

This commit is contained in:
Jenkins 2017-05-01 12:15:42 +00:00 committed by Gerrit Code Review
commit 5d20c21aee
1 changed files with 4 additions and 3 deletions

View File

@ -55,14 +55,15 @@ _TYPE_DESCRIPTIONS = {
cfg.StrOpt: 'String',
cfg.BoolOpt: 'Boolean',
cfg.IntOpt: 'Integer',
cfg.IPOpt: 'IP',
cfg.FloatOpt: 'Floating point',
cfg.HostnameOpt: 'Hostname',
cfg.ListOpt: 'List',
cfg.DictOpt: 'Dict',
cfg.PortOpt: 'Port number',
cfg.MultiStrOpt: 'Multi-valued',
cfg.IPOpt: 'IP address',
cfg.PortOpt: 'Port number',
cfg.HostnameOpt: 'Hostname',
cfg.URIOpt: 'URI',
cfg.HostAddressOpt: 'Host address',
cfg._ConfigFileOpt: 'List of filenames',
cfg._ConfigDirOpt: 'List of directory names',
}