Update install_venv.py so it says 'Mistral'

It currently prints 'Nova' in messages when I
use run_tests.sh.

Change-Id: Ibd720bfa23ff8275b62fd66e19c75393daef9314
This commit is contained in:
Dan Prince 2015-12-01 15:19:28 -05:00
parent 75f38d1e3c
commit 241b7565e2
1 changed files with 4 additions and 4 deletions

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)