summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMatthew Treinish <treinish@linux.vnet.ibm.com>2013-02-06 16:23:04 -0500
committerMatthew Treinish <treinish@linux.vnet.ibm.com>2013-02-06 16:26:08 -0500
commitcacc8ff92d13482bce6049986fb2035ef05fa973 (patch)
tree62494020a3d91b3677d5f66ac77916582c147f7f /tools
parentcc8d92382cdb3121843e9f3982b8d8c45e9e7a74 (diff)
downloadnova-cacc8ff92d13482bce6049986fb2035ef05fa973.tar.gz
nova-cacc8ff92d13482bce6049986fb2035ef05fa973.tar.xz
nova-cacc8ff92d13482bce6049986fb2035ef05fa973.zip
Sync latest install_venv_common from oslo.
This commit syncs in the latest version of install_venv_common from oslo, which fixes the import issue that was previously addressed by change: I8a3df02a51c2c777d8f47cb8bc72d0644ae47095 which gets reverted by this commit. Change-Id: I910610da5a4c413711819ca39627cb9ee94814ef
Diffstat (limited to 'tools')
-rw-r--r--tools/install_venv.py3
-rw-r--r--tools/install_venv_common.py7
2 files changed, 7 insertions, 3 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 60f4894ed..abf56ea0e 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -22,9 +22,6 @@
import os
import sys
-parentdir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-os.sys.path.insert(0, parentdir)
-
import install_venv_common as install_venv
diff --git a/tools/install_venv_common.py b/tools/install_venv_common.py
index b15011a00..3d47b12b2 100644
--- a/tools/install_venv_common.py
+++ b/tools/install_venv_common.py
@@ -25,6 +25,13 @@ import os
import subprocess
import sys
+
+possible_topdir = os.getcwd()
+if os.path.exists(os.path.join(possible_topdir, "nova",
+ "__init__.py")):
+ sys.path.insert(0, possible_topdir)
+
+
from nova.openstack.common import cfg