summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-02-20 08:50:18 +0000
committerGerrit Code Review <review@openstack.org>2013-02-20 08:50:18 +0000
commite37e02870216ea6de130ce3d1b2e8f642de9faf6 (patch)
treed3eef37cf671a7879303d3f693e8621c75377fe3 /tools
parent512490200e009bce3cb155fcea683e9776d67658 (diff)
parent706a1370056ffccc2c8811fc1ac0679944564ece (diff)
Merge "Use oslo-config-2013.1b4"
Diffstat (limited to 'tools')
-rwxr-xr-xtools/conf/analyze_opts.py2
-rw-r--r--tools/conf/extract_opts.py3
-rwxr-xr-xtools/hacking.py4
-rw-r--r--tools/install_venv_common.py2
-rw-r--r--tools/pip-requires1
-rw-r--r--tools/test-requires1
-rw-r--r--tools/xenserver/destroy_cached_images.py3
-rwxr-xr-xtools/xenserver/vm_vdi_cleaner.py3
8 files changed, 13 insertions, 6 deletions
diff --git a/tools/conf/analyze_opts.py b/tools/conf/analyze_opts.py
index f78169a8c..3088d6390 100755
--- a/tools/conf/analyze_opts.py
+++ b/tools/conf/analyze_opts.py
@@ -26,7 +26,7 @@ import os
import sys
sys.path.append(os.getcwd())
-from nova.openstack.common import iniparser
+from oslo.config import iniparser
class PropertyCollecter(iniparser.BaseParser):
diff --git a/tools/conf/extract_opts.py b/tools/conf/extract_opts.py
index 4dde53335..83d99dd19 100644
--- a/tools/conf/extract_opts.py
+++ b/tools/conf/extract_opts.py
@@ -26,7 +26,8 @@ import socket
import sys
import textwrap
-from nova.openstack.common import cfg
+from oslo.config import cfg
+
from nova.openstack.common import importutils
diff --git a/tools/hacking.py b/tools/hacking.py
index 69a4d7399..051c2a33c 100755
--- a/tools/hacking.py
+++ b/tools/hacking.py
@@ -48,7 +48,9 @@ logging.disable('LOG')
IMPORT_EXCEPTIONS = ['sqlalchemy', 'migrate', 'nova.db.sqlalchemy.session',
'nova.openstack.common.log.logging',
- 'nova.db.sqlalchemy.migration.versioning_api', 'paste']
+ 'nova.db.sqlalchemy.migration.versioning_api']
+# imp.find_module() doesn't support namespace packages
+IMPORT_EXCEPTIONS += ['oslo', 'paste']
# Paste is missing a __init__ in top level directory
START_DOCSTRING_TRIPLE = ['u"""', 'r"""', '"""', "u'''", "r'''", "'''"]
END_DOCSTRING_TRIPLE = ['"""', "'''"]
diff --git a/tools/install_venv_common.py b/tools/install_venv_common.py
index 3d47b12b2..92230dac7 100644
--- a/tools/install_venv_common.py
+++ b/tools/install_venv_common.py
@@ -32,7 +32,7 @@ if os.path.exists(os.path.join(possible_topdir, "nova",
sys.path.insert(0, possible_topdir)
-from nova.openstack.common import cfg
+from oslo.config import cfg
class InstallVenv(object):
diff --git a/tools/pip-requires b/tools/pip-requires
index d7e48ff87..bb4eb7119 100644
--- a/tools/pip-requires
+++ b/tools/pip-requires
@@ -27,3 +27,4 @@ python-glanceclient>=0.5.0,<2
python-keystoneclient>=0.2.0
stevedore>=0.7
websockify
+http://tarballs.openstack.org/oslo-config/oslo-config-2013.1b4.tar.gz#egg=oslo-config
diff --git a/tools/test-requires b/tools/test-requires
index 49ee52809..1318ecd9a 100644
--- a/tools/test-requires
+++ b/tools/test-requires
@@ -9,6 +9,7 @@ mox==0.5.3
MySQL-python
psycopg2
pep8==1.3.3
+pyflakes
pylint==0.25.2
python-subunit
sphinx>=1.1.2
diff --git a/tools/xenserver/destroy_cached_images.py b/tools/xenserver/destroy_cached_images.py
index fa71c0a68..625c765c6 100644
--- a/tools/xenserver/destroy_cached_images.py
+++ b/tools/xenserver/destroy_cached_images.py
@@ -16,6 +16,8 @@ eventlet.monkey_patch()
import os
import sys
+from oslo.config import cfg
+
# If ../nova/__init__.py exists, add ../ to Python search path, so that
# it will override what happens to be installed in /usr/(local/)lib/python...
POSSIBLE_TOPDIR = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
@@ -26,7 +28,6 @@ if os.path.exists(os.path.join(POSSIBLE_TOPDIR, 'nova', '__init__.py')):
sys.path.insert(0, POSSIBLE_TOPDIR)
from nova import config
-from nova.openstack.common import cfg
from nova.openstack.common import log as logging
from nova import utils
from nova.virt.xenapi import driver as xenapi_driver
diff --git a/tools/xenserver/vm_vdi_cleaner.py b/tools/xenserver/vm_vdi_cleaner.py
index c9dc0b53d..a842282fa 100755
--- a/tools/xenserver/vm_vdi_cleaner.py
+++ b/tools/xenserver/vm_vdi_cleaner.py
@@ -19,6 +19,8 @@
import doctest
import os
import sys
+
+from oslo.config import cfg
import XenAPI
@@ -30,7 +32,6 @@ if os.path.exists(os.path.join(possible_topdir, "nova", "__init__.py")):
from nova import context
from nova import db
from nova import exception
-from nova.openstack.common import cfg
from nova.openstack.common import timeutils
from nova.virt import virtapi
from nova.virt.xenapi import driver as xenapi_driver