From 6ebc314ba1833b68a20384b32ca8089ad9c4385e Mon Sep 17 00:00:00 2001 From: Richard Belleville Date: Tue, 13 Oct 2020 14:48:45 -0700 Subject: [PATCH] Fix Python 2 build --- third_party/py/python_configure.bzl | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/py/python_configure.bzl b/third_party/py/python_configure.bzl index 6e69c3bc59c..5be5560ef1e 100644 --- a/third_party/py/python_configure.bzl +++ b/third_party/py/python_configure.bzl @@ -229,6 +229,7 @@ def _check_python_bin(repository_ctx, python_bin, bin_path_key, allow_absent): (bin_path_key, python_bin)) else: return None + return True def _get_python_include(repository_ctx, python_bin): """Gets the python include path."""