# HG changeset patch # User Andrey Skvortsov # Date 1538224880 -10800 # Node ID 13acfd8d33e6c9bca747910cd76565ea45bd0b06 # Parent 5cf1d70b53954cc7a8eea63eee6d1fc82fbe9203 check_source.sh: add E301 check to the list of selected PEP8 errors diff -r 5cf1d70b5395 -r 13acfd8d33e6 tests/tools/check_source.sh --- a/tests/tools/check_source.sh Sat Sep 29 15:38:49 2018 +0300 +++ b/tests/tools/check_source.sh Sat Sep 29 15:41:20 2018 +0300 @@ -116,6 +116,7 @@ user_select=$user_select,E228 # E228 missing whitespace around modulo operator user_select=$user_select,W293 # W293 blank line contains whitespace user_select=$user_select,E302 # E302 expected 2 blank lines, found 1 + user_select=$user_select,E301 # E301 expected 2 blank lines, found 1 user_select=$user_select,E261 # E261 at least two spaces before inline comment user_select=$user_select,E271 # E271 multiple spaces after keyword user_select=$user_select,E231 # E231 missing whitespace after ','