summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-08-24 13:27:53 +0000
committerGerrit Code Review <review@openstack.org>2012-08-24 13:27:53 +0000
commitd6400802b54b5e9395bbb5ff9dfa3bc2b6bbf246 (patch)
treea7f42564c3d263b713c4d5e44fb1d02104cbd41a /tools
parent99f9beb1831e4c8a74b230eaa3de6a6b9dc6f249 (diff)
parent861670e09194deb58690c32056ba9c67a56b9dd2 (diff)
downloadkeystone-d6400802b54b5e9395bbb5ff9dfa3bc2b6bbf246.tar.gz
keystone-d6400802b54b5e9395bbb5ff9dfa3bc2b6bbf246.tar.xz
keystone-d6400802b54b5e9395bbb5ff9dfa3bc2b6bbf246.zip
Merge "pep8 1.3.3 cleanup removing unused imports"
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 84b79631..97c82daf 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -62,9 +62,9 @@ def run_command(cmd, redirect_output=True, check_exit_code=True):
HAS_EASY_INSTALL = bool(run_command(['which', 'easy_install'],
- check_exit_code=False).strip())
+ check_exit_code=False).strip())
HAS_VIRTUALENV = bool(run_command(['which', 'virtualenv'],
- check_exit_code=False).strip())
+ check_exit_code=False).strip())
def check_dependencies():