Merge "Update install_venv.py so it says 'Mistral'"

This commit is contained in:
Jenkins
2015-12-03 11:22:47 +00:00
committed by Gerrit Code Review

View File

@@ -27,12 +27,12 @@ import install_venv_common as install_venv
def print_help(venv, root):
help = """
Nova development environment setup is complete.
Mistral development environment setup is complete.
Nova development uses virtualenv to track and manage Python dependencies
Mistral development uses virtualenv to track and manage Python dependencies
while in development and testing.
To activate the Nova virtualenv for the extent of your current shell
To activate the Mistral virtualenv for the extent of your current shell
session you can run:
$ source %s/bin/activate
@@ -59,7 +59,7 @@ def main(argv):
pip_requires = os.path.join(root, 'requirements.txt')
test_requires = os.path.join(root, 'test-requirements.txt')
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
project = 'Nova'
project = 'Mistral'
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,
py_version, project)
options = install.parse_args(argv)