From 6e92a67fc3e6dcd587e3fd225b7142bc74116e52 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Thu, 15 Nov 2012 19:41:58 -0500 Subject: Remove nova.flags Now that options have all moved from nova.flags to nova.config, we can safely remove the nova.flags imports and replace them with nova.config imports. Change-Id: Ic077a72dd6419bbf1e1babe71acfa43c4e8b55c8 --- nova/consoleauth/__init__.py | 1 - nova/consoleauth/manager.py | 1 - nova/consoleauth/rpcapi.py | 1 - 3 files changed, 3 deletions(-) (limited to 'nova/consoleauth') diff --git a/nova/consoleauth/__init__.py b/nova/consoleauth/__init__.py index 11253ea91..dbff115ff 100644 --- a/nova/consoleauth/__init__.py +++ b/nova/consoleauth/__init__.py @@ -19,7 +19,6 @@ """Module to authenticate Consoles.""" from nova import config -from nova import flags from nova.openstack.common import cfg diff --git a/nova/consoleauth/manager.py b/nova/consoleauth/manager.py index c772101eb..9a3f03e5a 100644 --- a/nova/consoleauth/manager.py +++ b/nova/consoleauth/manager.py @@ -21,7 +21,6 @@ import time from nova import config -from nova import flags from nova import manager from nova.openstack.common import cfg from nova.openstack.common import jsonutils diff --git a/nova/consoleauth/rpcapi.py b/nova/consoleauth/rpcapi.py index 51d28cb04..822f401bc 100644 --- a/nova/consoleauth/rpcapi.py +++ b/nova/consoleauth/rpcapi.py @@ -19,7 +19,6 @@ Client side of the consoleauth RPC API. """ from nova import config -from nova import flags import nova.openstack.common.rpc.proxy CONF = config.CONF -- cgit