From 93c9e6b6596398d33c8033cc11a21a2fddc03e19 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 28 Aug 2025 17:15:56 +0000 Subject: [PATCH] Fix startswith typo --- mojo/mojo_host_platform.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mojo/mojo_host_platform.bzl b/mojo/mojo_host_platform.bzl index 2c2f013..9aac95a 100644 --- a/mojo/mojo_host_platform.bzl +++ b/mojo/mojo_host_platform.bzl @@ -159,7 +159,7 @@ def _impl(rctx): # amd-smi outputs warnings to stdout, filter them out json_lines = [] for line in result.stdout.splitlines(): - if line.starswith("WARNING:"): + if line.startswith("WARNING:"): continue json_lines.append(line) blob = json.decode("\n".join(json_lines))