summaryrefslogtreecommitdiffstats
path: root/tools/bzl/license.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bzl/license.bzl')
-rw-r--r--tools/bzl/license.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bzl/license.bzl b/tools/bzl/license.bzl
index 5a6bf7fa63..ec89c41608 100644
--- a/tools/bzl/license.bzl
+++ b/tools/bzl/license.bzl
@@ -25,7 +25,7 @@ def license_map(name, targets = [], opts = [], **kwargs):
# post process the XML into our favorite format.
native.genrule(
name = "gen_license_txt_" + name,
- cmd = "python $(location //tools/bzl:license-map.py) %s %s > $@" % (" ".join(opts), " ".join(xmls)),
+ cmd = "python3 $(location //tools/bzl:license-map.py) %s %s > $@" % (" ".join(opts), " ".join(xmls)),
outs = [name + ".gen.txt"],
tools = tools,
**kwargs