Skip to content

Commit

Permalink
Merge pull request #2287 from skurfer/shell-history
Browse files Browse the repository at this point in the history
Cleaner shell history
  • Loading branch information
techalchemy committed Jun 11, 2018
2 parents eb7d4cd + 487d58a commit 863ebbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 863ebbd

Please sign in to comment.