Skip to content

Commit 2f1b6d1

Browse files
committed
bootstrap.py: follow up more 'tidy' insistence (string quotes).
1 parent 3a2392b commit 2f1b6d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/bootstrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,9 @@ def default_build_triple(verbose):
313313
kernel, cputype, processor = uname.decode(default_encoding).split(maxsplit=2)
314314

315315
# ON NetBSD, use `uname -p` to set the CPU type
316-
if kernel == 'NetBSD':
316+
if kernel == "NetBSD":
317317
cputype = (
318-
subprocess.check_output(['uname', '-p']).strip().decode(default_encoding)
318+
subprocess.check_output(["uname", "-p"]).strip().decode(default_encoding)
319319
)
320320

321321
# The goal here is to come up with the same triple as LLVM would,

0 commit comments

Comments
 (0)