summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-09-21 16:50:28 -0700
committerGary E. Miller <gem@rellim.com>2018-09-21 16:50:28 -0700
commita4710779e21895d4072531249b1e5101374cf421 (patch)
treeb6090a614fef504f624d08a2ccf49ae475984eca /SConstruct
parent70cbe2689d6abf91d275a66623c779809ca0cadd (diff)
downloadgpsd-a4710779e21895d4072531249b1e5101374cf421.tar.gz
SConstruct: pep8 is now pycodestyle.
Use the new name.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 1 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index e2f07ada..7ba2fa8a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1863,11 +1863,9 @@ if len(python_progs) > 0:
if len(python_progs) > 0:
pep8 = Utility("pep8",
["jsongen.py", "maskaudit.py", python_built_extensions],
- ['pep8 --ignore=W602,E122,E241 {0} SConstruct '
+ ['pycodestyle --ignore=W602,E122,E241 {0} SConstruct '
'gps/[a-zA-Z]*.py *.py'''.format(" ".join(python_progs))])
-# Additional Python readablity style checks
-if len(python_progs) > 0:
flake8 = Utility("flake8",
["jsongen.py", "maskaudit.py", python_built_extensions],
['flake8 --ignore=E501,W602,E122,E241,E401 {0} '