summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/openstack/common/cfg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/openstack/common/cfg.py b/nova/openstack/common/cfg.py
index 7adf3b472..495c2aff0 100644
--- a/nova/openstack/common/cfg.py
+++ b/nova/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',
@@ -226,7 +226,7 @@ import os
import string
import sys
-import iniparser
+from nova.openstack.common import iniparser
class Error(Exception):