From 8c0f7dc0702f3e9a0e198a6206ecd2f0f8cc6d62 Mon Sep 17 00:00:00 2001 From: Rick Harris Date: Wed, 28 Mar 2012 18:37:16 +0000 Subject: Use absolute import for iniparser. Fixes bug 967400 Change-Id: I0c028f6b5285cd641dedbcea3132224e404b004e --- openstack/common/cfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openstack') diff --git a/openstack/common/cfg.py b/openstack/common/cfg.py index 7adf3b4..fada0c3 100644 --- a/openstack/common/cfg.py +++ b/openstack/common/cfg.py @@ -226,7 +226,7 @@ import os import string import sys -import iniparser +from openstack.common import iniparser class Error(Exception): -- cgit