summaryrefslogtreecommitdiffstats
path: root/nova/consoleauth
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2012-02-03 00:50:58 +0000
committerMark McLoughlin <markmc@redhat.com>2012-02-03 19:21:54 +0000
commit9871c5f963b6d98240635a9a447d14d46133c910 (patch)
treef58c68d5e2dbb98c494b142097832f3679d157ce /nova/consoleauth
parent9dadca1f3a8fda00d93f429846dce6bd8ae534a2 (diff)
downloadnova-9871c5f963b6d98240635a9a447d14d46133c910.tar.gz
nova-9871c5f963b6d98240635a9a447d14d46133c910.tar.xz
nova-9871c5f963b6d98240635a9a447d14d46133c910.zip
Move cfg to nova.openstack.common
Move it here so that it can be kept in sync with openstack-common using the new update.py script for code in openstack-common's incubation area. See here for more details: http://wiki.openstack.org/CommonLibrary#Incubation Note: this commit just moves the existing code in Nova with no other changes. A subsequent commit will sync it with latest openstack-common so that it is easier see the new changes. Change-Id: If88d678b1b9bad3d37117de7f7159d7fea8ab4c8
Diffstat (limited to 'nova/consoleauth')
-rw-r--r--nova/consoleauth/__init__.py2
-rw-r--r--nova/consoleauth/manager.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/nova/consoleauth/__init__.py b/nova/consoleauth/__init__.py
index 4048ae433..4b28776c0 100644
--- a/nova/consoleauth/__init__.py
+++ b/nova/consoleauth/__init__.py
@@ -18,8 +18,8 @@
"""Module to authenticate Consoles."""
-from nova.common import cfg
from nova import flags
+from nova.openstack.common import cfg
consoleauth_topic_opt = \
diff --git a/nova/consoleauth/manager.py b/nova/consoleauth/manager.py
index 08ddd5a3b..b3f85e1f9 100644
--- a/nova/consoleauth/manager.py
+++ b/nova/consoleauth/manager.py
@@ -22,10 +22,10 @@ import os
import sys
import time
-from nova.common import cfg
from nova import flags
from nova import log as logging
from nova import manager
+from nova.openstack.common import cfg
from nova import utils