diff options
| author | Rick Harris <rconradharris@gmail.com> | 2012-03-28 18:37:16 +0000 |
|---|---|---|
| committer | Rick Harris <rconradharris@gmail.com> | 2012-03-28 18:38:08 +0000 |
| commit | 8c0f7dc0702f3e9a0e198a6206ecd2f0f8cc6d62 (patch) | |
| tree | 6de8cfd6b1a615d083ced7e572594d98febf626b /openstack/common | |
| parent | a43bfa116dfaefe199c9b4f02344a4b4176baf01 (diff) | |
| download | oslo-8c0f7dc0702f3e9a0e198a6206ecd2f0f8cc6d62.tar.gz oslo-8c0f7dc0702f3e9a0e198a6206ecd2f0f8cc6d62.tar.xz oslo-8c0f7dc0702f3e9a0e198a6206ecd2f0f8cc6d62.zip | |
Use absolute import for iniparser.
Fixes bug 967400
Change-Id: I0c028f6b5285cd641dedbcea3132224e404b004e
Diffstat (limited to 'openstack/common')
| -rw-r--r-- | openstack/common/cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
