From 23e9600fc69541e132f36e27296104442df7ba41 Mon Sep 17 00:00:00 2001 From: Michael Gundlach Date: Wed, 18 Aug 2010 10:09:11 -0400 Subject: Fix pep8 violation --- tools/install_venv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/install_venv.py b/tools/install_venv.py index 4e775eb33..f8c47ff04 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) -- cgit From ad3bda4b1a81ee60230869a3d207141f7315a3ca Mon Sep 17 00:00:00 2001 From: Michael Gundlach Date: Wed, 18 Aug 2010 11:53:41 -0400 Subject: pep8 typo --- tools/install_venv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/install_venv.py b/tools/install_venv.py index f8c47ff04..e108c29a1 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -97,7 +97,7 @@ def install_dependencies(venv=VENV): # Tell the virtual env how to "import nova" pthfile = os.path.join(venv, "lib", "python2.6", "site-packages", "nova.pth") - f=open(pthfile, 'w') + f = open(pthfile, 'w') f.write("%s\n" % ROOT) -- cgit