Fix print statements in scripts/make-dev-virtualenv.sh script.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-06-09 05:40:55 +00:00
parent 744d5c64d3
commit 9f47765a3f
1 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@ test -r "$WRPR" && . $WRPR
okay=$? okay=$?
if test "$okay" -eq 0 ; then if test "$okay" -eq 0 ; then
printf "Using %s as WORKON_HOME for the new virtualenv...\n" "$PWD" printf "Using %s as WORKON_HOME for the new virtualenv...\n" $PWD
printf"What should the name of the new virtualenv be? (default: '%s')\n" "$project" printf "What should the name of the new virtualenv be? (default: '%s')\n" $project
read -p"Name for this virtualenv?: " name read -p"Name for this virtualenv?: " name
if test -z "$name"; then if test -z "$name"; then
name="$project" name="$project"