From 276fafe3885b61171a07c0b536d1ff55d2fef80a Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Wed, 20 Aug 2014 22:41:06 -0500 Subject: 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 --- tools/install_venv.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tools') 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__': -- cgit v1.2.1