From e21628ad827c5f687ab0c3b5fc367351dfdfd743 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Tue, 7 Jun 2016 20:00:16 -0500 Subject: [PATCH] Update our warning message about Windows --- flake8/checker.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake8/checker.py b/flake8/checker.py index 03709dd..655387e 100644 --- a/flake8/checker.py +++ b/flake8/checker.py @@ -115,8 +115,10 @@ class Manager(object): if (utils.is_windows() and not utils.can_run_multiprocessing_on_windows()): - LOG.warning('The --jobs option is not available on Windows. ' - 'Ignoring --jobs arguments.') + LOG.warning('The --jobs option is only available on Windows on ' + 'Python 2.7.11+ and 3.3+. We have detected that you ' + 'are running an unsupported version of Python on ' + 'Windows. Ignoring --jobs arguments.') return 0 if utils.is_using_stdin(self.arguments):