summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2014-08-20 22:41:06 -0500
committerVictor Morales <victor.morales@intel.com>2014-08-20 22:41:06 -0500
commit276fafe3885b61171a07c0b536d1ff55d2fef80a (patch)
treed0438e78263ee557a20e0dc7e405b51825b39e69 /tools
parent3985302f6753161fe27f212f564ec43eeb863adc (diff)
downloadpython-heatclient-276fafe3885b61171a07c0b536d1ff55d2fef80a.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: Idb77f164abee5625ac24800ddb94b9b8c0b85162 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 4d8feea..cc21843 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__':