From 69396e75332b5f6caf7a22ad2d1aa15a18d7fdf8 Mon Sep 17 00:00:00 2001 From: Ankur Rishi Date: Wed, 16 Apr 2014 19:53:54 +0000 Subject: [PATCH] Fix missing function error in install_venv The previous commit, 3362ee1337d47ab8930407c58311a811d471a7a4, a sync with Openstack Common, removed all definitions of the post_process() function from the Distro class and all of its child classes in install_venv_common.py. This fix simply removes the call to the function in install_venv.py The issue is similar to #1263940 in tempest: https://bugs.launchpad.net/tempest/+bug/1263940 Change-Id: Iedd0c29789c4b2ab9be880f9bd320b39a9bdd277 Closes-Bug: #1307705 --- tools/install_venv.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/install_venv.py b/tools/install_venv.py index 0011a8be..29ff3078 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -70,7 +70,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__':