summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Chivers <doug.chivers@hp.com>2015-02-17 11:45:13 -0800
committerDoug Chivers <doug.chivers@hp.com>2015-02-17 12:53:06 -0800
commitf06b7af7df1dcba8a63f79d3d247f3b3e41a283e (patch)
treed36b07e84ace46b9ec707d8ea05d2381124cc875
parent22413532bfe87bd61e0cc548f6234e6bca36b06b (diff)
downloadoslo-config-f06b7af7df1dcba8a63f79d3d247f3b3e41a283e.tar.gz
Fixes deprecation warning for oslo.config in cfg.py
Change-Id: I6e8dcb6970ea67cdabf0fb3ed7a7b1d44066533d Implements: oslo_config namespace change in cfg.py Closes-Bug: bug/1411674
-rw-r--r--oslo_config/cfg.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/oslo_config/cfg.py b/oslo_config/cfg.py
index c954279..83627b0 100644
--- a/oslo_config/cfg.py
+++ b/oslo_config/cfg.py
@@ -20,8 +20,8 @@ The schema for each option is defined using the
::
- from oslo.config import cfg
- from oslo.config import types
+ from oslo_config import cfg
+ from oslo_config import types
PortType = types.Integer(1, 65535)
@@ -331,8 +331,8 @@ import sys
import six
from six import moves
-from oslo.config import iniparser
-from oslo.config import types
+from oslo_config import iniparser
+from oslo_config import types
LOG = logging.getLogger(__name__)