remove noisy echo

This commit is contained in:
Gunther Hagleitner 2012-01-18 18:04:09 -08:00
parent 545f132702
commit f51c9b17f0
2 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,7 @@ V2
-- --
Joshua Harlow <harlowja@yahoo-inc.com> Joshua Harlow <harlowja@yahoo-inc.com>
Ken Thomas <krt@yahoo-inc.com> Ken Thomas <krt@yahoo-inc.com>
Gunther Hagleitner <hagleitn@yahoo-inc.com>
V1 V1
-- --

View File

@ -55,7 +55,6 @@ function run_pylint {
echo "Running pylint ..." echo "Running pylint ..."
srcfiles=`find devstack -type f | grep "py\$" | sed 's/devstack\/\(.*\)\.py/\1/' | tr '/' '.'` srcfiles=`find devstack -type f | grep "py\$" | sed 's/devstack\/\(.*\)\.py/\1/' | tr '/' '.'`
srcfiles+=" stack" srcfiles+=" stack"
echo $srcfiles
tee_fn="pylint.log" tee_fn="pylint.log"
pylint_opts="--rcfile=$pylintrc_fn" pylint_opts="--rcfile=$pylintrc_fn"
echo "$(${wrapper} pylint ${pylint_opts} ${srcfiles} 2>&1 | tee $tee_fn)" echo "$(${wrapper} pylint ${pylint_opts} ${srcfiles} 2>&1 | tee $tee_fn)"