From 3a2392bb082924449c87d28f5d3d8a60f309c9bf Mon Sep 17 00:00:00 2001 From: Havard Eidnes Date: Sat, 23 Aug 2025 21:40:19 +0000 Subject: [PATCH] bootstrap.py: follow up tidy output from CI. I thought tidy would be more allergic to 80-coloumn overflow, but so be it. --- src/bootstrap/bootstrap.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index e14433dd2305..b4af159ab8ea 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -314,8 +314,9 @@ def default_build_triple(verbose): # ON NetBSD, use `uname -p` to set the CPU type if kernel == 'NetBSD': - cputype = subprocess.check_output( - ['uname', '-p']).strip().decode(default_encoding) + cputype = ( + subprocess.check_output(['uname', '-p']).strip().decode(default_encoding) + ) # The goal here is to come up with the same triple as LLVM would, # at least for the subset of platforms we're willing to target.