Skip to content

Commit ff1edc4

Browse files
committed
fix indentation in virtualenvwrapper_lazy.sh
Change-Id: I9e5df375e8575cd39cb3a92bee9f986ff93f9f52
1 parent f96beaf commit ff1edc4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

virtualenvwrapper_lazy.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ export _VIRTUALENVWRAPPER_API="$_VIRTUALENVWRAPPER_API mkvirtualenv rmvirtualenv
55

66
if [ -z "$VIRTUALENVWRAPPER_SCRIPT" ]
77
then
8-
export VIRTUALENVWRAPPER_SCRIPT="$(which virtualenvwrapper.sh)"
8+
export VIRTUALENVWRAPPER_SCRIPT="$(which virtualenvwrapper.sh)"
99
fi
1010
if [ -z "$VIRTUALENVWRAPPER_SCRIPT" ]
1111
then
12-
echo "ERROR: virtualenvwrapper_lazy.sh: Could not find virtualenvwrapper.sh" 1>&2
12+
echo "ERROR: virtualenvwrapper_lazy.sh: Could not find virtualenvwrapper.sh" 1>&2
1313
fi
1414

1515
# Load the real implementation of the API from virtualenvwrapper.sh
@@ -20,15 +20,15 @@ function virtualenvwrapper_load {
2020
# Set up "alias" functions based on the API definition.
2121
function virtualenvwrapper_setup_lazy_loader {
2222
typeset venvw_name
23-
for venvw_name in $(echo ${_VIRTUALENVWRAPPER_API})
24-
do
25-
eval "
23+
for venvw_name in $(echo ${_VIRTUALENVWRAPPER_API})
24+
do
25+
eval "
2626
function $venvw_name {
27-
virtualenvwrapper_load
28-
${venvw_name} \"\$@\"
27+
virtualenvwrapper_load
28+
${venvw_name} \"\$@\"
2929
}
3030
"
31-
done
31+
done
3232
}
3333

3434
# Set up completion functions to virtualenvwrapper_load

0 commit comments

Comments
 (0)