summaryrefslogtreecommitdiff
path: root/utils/checkstyle.py
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2020-01-18 15:00:10 -0500
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-01-18 22:05:03 +0200
commit3e0c32f99284145430b89ec95ebc012eba64984d (patch)
tree7a66ecfab68b1cdb6801001e3e2fea8ed862d17c /utils/checkstyle.py
parent30f9624f894ae50044dd367c6560198940d9b702 (diff)
checkstyle: Move from pep8 to pycodestyle
The tool has been renamed in 2016 to make it more obvious what it is doing. There is no other changes needed on our side. See https://github.com/PyCQA/pycodestyle/issues/466 Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'utils/checkstyle.py')
-rwxr-xr-xutils/checkstyle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/checkstyle.py b/utils/checkstyle.py
index 93f02911..7edea25f 100755
--- a/utils/checkstyle.py
+++ b/utils/checkstyle.py
@@ -321,10 +321,10 @@ class Pep8Checker(StyleChecker):
data = ''.join(self.__content).encode('utf-8')
try:
- ret = subprocess.run(['pep8', '--ignore=E501', '-'],
+ ret = subprocess.run(['pycodestyle', '--ignore=E501', '-'],
input=data, stdout=subprocess.PIPE)
except FileNotFoundError:
- issues.append(StyleIssue(0, None, "Please install pep8 to validate python additions"))
+ issues.append(StyleIssue(0, None, "Please install pycodestyle to validate python additions"))
return issues
results = ret.stdout.decode('utf-8').splitlines()