summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/install_venv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 1f0fa3cc7..5d2369a96 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -95,8 +95,8 @@ def install_dependencies(venv=VENV):
# Tell the virtual env how to "import nova"
- pathfile=os.path.join(venv, "lib", "python2.6", "site-packages", "nova.pth")
- f=open(pathfile, 'w')
+ pthfile = os.path.join(venv, "lib", "python2.6", "site-packages", "nova.pth")
+ f = open(pthfile, 'w')
f.write("%s\n" % ROOT)