hacking/env-setup: remove unused sys import.

This commit is contained in:
Blair Zajac 2013-01-12 19:07:50 -08:00
parent b0ab81b237
commit ec5f6ae246

View file

@ -10,7 +10,7 @@ else
fi
# The below is an alternative to readlink -fn which doesn't exist on OS X
# Source: http://stackoverflow.com/a/1678636
FULL_PATH=`python -c "import os, sys; print os.path.realpath('$HACKING_DIR')"`
FULL_PATH=`python -c "import os; print os.path.realpath('$HACKING_DIR')"`
ANSIBLE_HOME=`dirname $FULL_PATH`
PREFIX_PYTHONPATH="$ANSIBLE_HOME/lib"