Allow flake8 to run in venv

flake8 should be able to run within the venv.

Change-Id: Ife269e54947f0283adceca15af60f38688e1ee64
This commit is contained in:
Eric Harney 2013-05-18 12:37:38 -04:00
parent 0b09f781c6
commit 1f0b83e2dd

View File

@ -110,7 +110,7 @@ srcfiles+=" setup.py"
function run_pep8 {
echo "Running PEP8 and HACKING compliance check..."
flake8 cinder* bin
bash -c "${wrapper} flake8 cinder* bin"
}