diff options
| author | Rick Harris <rconradharris@gmail.com> | 2012-03-29 04:51:09 +0000 |
|---|---|---|
| committer | Rick Harris <rconradharris@gmail.com> | 2012-03-29 04:51:09 +0000 |
| commit | f6cd8b79deb1f0ae3a132b67727afa0ab786e9ba (patch) | |
| tree | 4e48a55f24fb8a40d87b55be9ab357a2c8e82cdc /openstack/common | |
| parent | 95c4f5ab1159d69a73c41ba5f4f4a845fe22cc16 (diff) | |
| download | oslo-f6cd8b79deb1f0ae3a132b67727afa0ab786e9ba.tar.gz oslo-f6cd8b79deb1f0ae3a132b67727afa0ab786e9ba.tar.xz oslo-f6cd8b79deb1f0ae3a132b67727afa0ab786e9ba.zip | |
Typofix, OptionGroup should be OptGroup.
Change-Id: I67473bb847759ce719876e08f8a894e000f11bb3
Diffstat (limited to 'openstack/common')
| -rw-r--r-- | openstack/common/cfg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack/common/cfg.py b/openstack/common/cfg.py index fada0c3..4f76bc7 100644 --- a/openstack/common/cfg.py +++ b/openstack/common/cfg.py @@ -128,8 +128,8 @@ manager e.g.:: Options can be registered as belonging to a group:: - rabbit_group = cfg.OptionGroup(name='rabbit', - title='RabbitMQ options') + rabbit_group = cfg.OptGroup(name='rabbit', + title='RabbitMQ options') rabbit_host_opt = cfg.StrOpt('host', default='localhost', |
