summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@yahoo.com>2010-08-30 16:44:30 -0700
committerVishvananda Ishaya <vishvananda@yahoo.com>2010-08-30 16:44:30 -0700
commitffcc019e38e61c1c3c5c2552c15259d2b8b04e5d (patch)
tree8794f85ac3c4770e3a6ecd6a77c378636cd5e40a /tools
parentb9aa0dae0a5a64a244f1bff95ad8af22cf87f7f6 (diff)
parent9643d417c539f3e21beed743cb2f427c6ab5a469 (diff)
merged trunk, fixed a couple errors
Diffstat (limited to 'tools')
-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)