diff options
author | Jenkins <jenkins@review.openstack.org> | 2012-11-20 02:02:50 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2012-11-20 02:02:50 +0000 |
commit | 8c821c872cbec95bd48e68dc62c46030a097ce4f (patch) | |
tree | fe38ad882ef665d78f85dce46dda716a89971f08 /nova/quota.py | |
parent | 1251c02d1d3587e7762eaab1352d08cbf5baa3c4 (diff) | |
parent | 94d87bce212f91c54370784a5544f1a07625938a (diff) | |
download | nova-8c821c872cbec95bd48e68dc62c46030a097ce4f.tar.gz nova-8c821c872cbec95bd48e68dc62c46030a097ce4f.tar.xz nova-8c821c872cbec95bd48e68dc62c46030a097ce4f.zip |
Merge "Remove nova.config.CONF"
Diffstat (limited to 'nova/quota.py')
-rw-r--r-- | nova/quota.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/quota.py b/nova/quota.py index 730c466d9..fad125805 100644 --- a/nova/quota.py +++ b/nova/quota.py @@ -20,7 +20,6 @@ import datetime -from nova import config from nova import db from nova import exception from nova.openstack.common import cfg @@ -79,7 +78,7 @@ quota_opts = [ help='default driver to use for quota checks'), ] -CONF = config.CONF +CONF = cfg.CONF CONF.register_opts(quota_opts) |