2 new commits in tox: https://bitbucket.org/hpk42/tox/commits/8730f3fd5bf0/ Changeset: 8730f3fd5bf0 User: pmoore Date: 2014-05-06 15:44:45 Summary: Return value of locate_via_py was being ignored Affected #: 1 file
diff -r dd8cf6df144ace26df9fe2ecacd56680b6c032bc -r 8730f3fd5bf03cbed41aeee883bc509a047e4ab9 tox/interpreters.py --- a/tox/interpreters.py +++ b/tox/interpreters.py @@ -159,7 +159,7 @@ # The standard executables can be found as a last resort via the # Python launcher py.exe if m: - locate_via_py(*m.groups()) + return locate_via_py(*m.groups()) def pyinfo(): import sys https://bitbucket.org/hpk42/tox/commits/c07badfc0f02/ Changeset: c07badfc0f02 User: hpk42 Date: 2014-05-10 12:07:33 Summary: Merged in pmoore/tox (pull request #107) Return value of locate_via_py was being ignored Affected #: 1 file diff -r 59a4722ecc323e9f23796e97ee05233566a6c565 -r c07badfc0f02b5816403d3b5dc324c146708efb5 tox/interpreters.py --- a/tox/interpreters.py +++ b/tox/interpreters.py @@ -159,7 +159,7 @@ # The standard executables can be found as a last resort via the # Python launcher py.exe if m: - locate_via_py(*m.groups()) + return locate_via_py(*m.groups()) def pyinfo(): import sys Repository URL: https://bitbucket.org/hpk42/tox/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ pytest-commit mailing list pytest-commit@python.org https://mail.python.org/mailman/listinfo/pytest-commit