Fix missing function error in install_venv

The previous commit, 3362ee1337,
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
This commit is contained in:
Ankur Rishi 2014-04-16 19:53:54 +00:00
parent a0a19a9a46
commit 69396e7533
1 changed files with 0 additions and 1 deletions

View File

@ -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__':