From d62fb3334b3a93e29591aeededb24978f56022ab Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Sep 2015 09:00:17 +0530 Subject: [PATCH] ... --- setup/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/check.py b/setup/check.py index 68879eeaf0..02b5c688b1 100644 --- a/setup/check.py +++ b/setup/check.py @@ -62,7 +62,7 @@ class Check(Command): errors = False ext = os.path.splitext(f)[1] if ext in {'.py', '.recipe'}: - p = subprocess.Popen(['flake8', '--ignore=E,W', f]) + p = subprocess.Popen(['flake8-python2', '--ignore=E,W', f]) if p.wait() != 0: errors = True else: