Skip to content

Commit cd0bb77

Browse files
committed
fixes issue 79 by enclosing WORKON_HOME in quotes
1 parent bf6946b commit cd0bb77

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/en/history.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Release History
33
===============
44

5+
dev
6+
7+
- Fix problem with space in WORKON_HOME path (:bbissue:`79`).
8+
59
2.6.3
610

711
- Hard-code the version information in the setup.py and conf.py

virtualenvwrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ virtualenvwrapper_run_hook () {
143143

144144
# Set up virtualenvwrapper properly
145145
virtualenvwrapper_initialize () {
146-
export WORKON_HOME=$(virtualenvwrapper_derive_workon_home)
146+
export WORKON_HOME="$(virtualenvwrapper_derive_workon_home)"
147147
virtualenvwrapper_verify_workon_home -q || return 1
148148
virtualenvwrapper_run_hook "initialize"
149149
if [ $? -ne 0 ]

0 commit comments

Comments
 (0)