summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2014-01-31 11:33:54 -0600
committerVictor Morales <victor.morales@intel.com>2014-01-31 11:33:54 -0600
commit0194492059920fd8d9d91849c341b2de0b561089 (patch)
tree71c8607c094d4ee863be01b761aae1ce6e48482d /tools
parentc8ad3157633b26ae324c352a73bb599eb084c115 (diff)
downloadpython-novaclient-0194492059920fd8d9d91849c341b2de0b561089.tar.gz
Removed undefined method in install_env.py file
There was a call from install_venv.py file to post_process method of InstallVenv class, but this method is not defined in this class as result it was raising an error. Even when this error doesn't affect dependencies installation, it is not allowing to display user information. Change-Id: I499c0399eb961588d7e1491e1481412ffdda38b8 Closes-Bug: #1275025
Diffstat (limited to 'tools')
-rw-r--r--tools/install_venv.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 4d8feeae..cc218437 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -68,7 +68,6 @@ def main(argv):
install.check_dependencies()
install.create_virtualenv(no_site_packages=options.no_site_packages)
install.install_dependencies()
- install.post_process()
print_help(project, venv, root)
if __name__ == '__main__':