Changed the config module which includes CONF

currently CONF was attempted of being imported from nova config.py
rather than openstack/common/cfg.py. this commit fixes that.
This commit is contained in:
Nikhil Komawar 2012-11-30 11:50:57 -05:00
parent 705c54edb6
commit 902c6fb37f
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ opts = [
default=6080, default=6080,
help='Port on which to listen for incoming requests'), help='Port on which to listen for incoming requests'),
] ]
CONF = config.CONF CONF = cfg.CONF
CONF.register_cli_opts(opts) CONF.register_cli_opts(opts)
# As of nova commit 0b11668e64450039dc071a4a123abd02206f865f we must # As of nova commit 0b11668e64450039dc071a4a123abd02206f865f we must