diff options
| author | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-08-25 17:36:03 +0000 |
|---|---|---|
| committer | Tarmac <> | 2010-08-25 17:36:03 +0000 |
| commit | 90ca9b373935f2e2bddedf1f33befb35f89aaab4 (patch) | |
| tree | cab0d5e86c38351f9ad9822983b3e6b43096c6dc | |
| parent | e185a95ae6396e86e92b4a5e7ec92b5b422847d5 (diff) | |
| parent | ad3bda4b1a81ee60230869a3d207141f7315a3ca (diff) | |
| download | nova-90ca9b373935f2e2bddedf1f33befb35f89aaab4.tar.gz nova-90ca9b373935f2e2bddedf1f33befb35f89aaab4.tar.xz nova-90ca9b373935f2e2bddedf1f33befb35f89aaab4.zip | |
Fix a pep8 violation.
| -rw-r--r-- | tools/install_venv.py | 4 |
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) |
