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 cdb13d074e..7b1375a9ca 100644
--- a/tools/bzl/license.bzl
+++ b/tools/bzl/license.bzl
@@ -50,7 +50,7 @@ def license_map(name, targets = [], opts = [], json_maps = [], **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 %s > $@" % (" ".join(opts), " ".join(json_maps_locations), " ".join(xmls)),
+ cmd = "python3 $(location //tools/bzl:license-map.py) %s %s %s > $@" % (" ".join(opts), " ".join(json_maps_locations), " ".join(xmls)),
outs = [name + ".gen.txt"],
tools = tools,
**kwargs