Merge "Don't stop dib-lint on first flake8 failure"

This commit is contained in:
Jenkins 2016-04-20 18:00:20 +00:00 committed by Gerrit Code Review
commit bef58a0880
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ for i in $(find elements -type f \
# Ensure 4 spaces indent are used
if [ "$(file -b --mime-type $i)" = "text/x-python" ]; then
flake8 $i
flake8 $i || error "$i failed flake8"
else
if ! excluded indent ; then
indent_regex='^\( \{4\}\)* \{1,3\}[^ ]'