Update our warning message about Windows

This commit is contained in:
Ian Cordasco 2016-06-07 20:00:16 -05:00
parent 55f10211a3
commit e21628ad82
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A

View file

@ -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):