aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/minstall.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-10-21 19:05:27 -0400
committerXavier Claessens <xclaesse@gmail.com>2021-10-27 09:51:52 -0400
commit894735288920816b9ad668ca27ce2e013a3f2640 (patch)
tree62d4d41bd5adf436507968447480c08120a14a6e /mesonbuild/minstall.py
parent81a2c1b36d91702d82234136ed1868c7118af322 (diff)
downloadmeson-894735288920816b9ad668ca27ce2e013a3f2640.zip
meson-894735288920816b9ad668ca27ce2e013a3f2640.tar.gz
meson-894735288920816b9ad668ca27ce2e013a3f2640.tar.bz2
fix various flake8 whitespace errors
Diffstat (limited to 'mesonbuild/minstall.py')
-rw-r--r--mesonbuild/minstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py
index 0837808..7d0da13 100644
--- a/mesonbuild/minstall.py
+++ b/mesonbuild/minstall.py
@@ -238,7 +238,7 @@ def restore_selinux_contexts() -> None:
return
proc, out, err = Popen_safe(['restorecon', '-F', '-f-', '-0'], ('\0'.join(f for f in selinux_updates) + '\0'))
- if proc.returncode != 0 :
+ if proc.returncode != 0:
print('Failed to restore SELinux context of installed files...',
'Standard output:', out,
'Standard error:', err, sep='\n')
@@ -719,7 +719,7 @@ class Installer:
self.did_install_something = True
try:
self.fix_rpath(outname, t.rpath_dirs_to_remove, install_rpath, final_path,
- install_name_mappings, verbose=False)
+ install_name_mappings, verbose=False)
except SystemExit as e:
if isinstance(e.code, int) and e.code == 0:
pass