diff --git a/pipenv/core.py b/pipenv/core.py index 4d06a66c..ba31c344 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -1159,7 +1159,7 @@ def activate_virtualenv(source=True): """Returns the string to activate a virtualenv.""" # Suffix and source command for other shells. suffix = '' - command = '.' if source else '' + command = ' .' if source else '' # Support for fish shell. if PIPENV_SHELL and 'fish' in PIPENV_SHELL: suffix = '.fish'