about summary refs log tree commit diff
path: root/src/bootstrap/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap/bootstrap.py')
-rw-r--r--src/bootstrap/bootstrap.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py
index e14433dd230..b4af159ab8e 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.