Skip to content

Commit 3a2392b

Browse files
committed
bootstrap.py: follow up tidy output from CI.
I thought tidy would be more allergic to 80-coloumn overflow, but so be it.
1 parent 45bcbd9 commit 3a2392b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/bootstrap/bootstrap.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,9 @@ def default_build_triple(verbose):
314314

315315
# ON NetBSD, use `uname -p` to set the CPU type
316316
if kernel == 'NetBSD':
317-
cputype = subprocess.check_output(
318-
['uname', '-p']).strip().decode(default_encoding)
317+
cputype = (
318+
subprocess.check_output(['uname', '-p']).strip().decode(default_encoding)
319+
)
319320

320321
# The goal here is to come up with the same triple as LLVM would,
321322
# at least for the subset of platforms we're willing to target.

0 commit comments

Comments
 (0)