Merge pull request #3009 from RafalSkolasinski/fix_2990

Add trailing white space to --prompt argument when creating virtualenv
This commit is contained in:
Dan Ryan
2018-10-12 15:33:41 -04:00
committed by GitHub
+1 -1
View File
@@ -875,7 +875,7 @@ def do_create_virtualenv(python=None, site_packages=False, pypi_mirror=None):
sys.executable,
"-m",
"virtualenv",
"--prompt=({0})".format(project.name),
"--prompt=({0}) ".format(project.name),
"--python={0}".format(python),
project.get_location_for_virtualenv(),
]