diff --git a/tools/install_venv.py b/tools/install_venv.py index 4e775eb33454..f8c47ff04f2c 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -96,8 +96,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)