summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-11-25 12:19:01 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-11-25 14:07:45 +0100
commit2e559a15ddff641ea3786e1f2e32821be49c8d6b (patch)
tree667337eff20ae0a82cf69fe1a150f709476d751c
parentab056a8fe90452a8cf8ba7864b0c10cf53a4f6fc (diff)
downloadqutebrowser-2e559a15ddff641ea3786e1f2e32821be49c8d6b.tar.gz
qutebrowser-2e559a15ddff641ea3786e1f2e32821be49c8d6b.zip
scripts: Use utils.print_error in mkvenv.py
-rw-r--r--scripts/mkvenv.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mkvenv.py b/scripts/mkvenv.py
index 084062509..ede0c1ef4 100644
--- a/scripts/mkvenv.py
+++ b/scripts/mkvenv.py
@@ -249,13 +249,13 @@ def apply_xcb_util_workaround(
try:
libxcb_util_libs = libs['libxcb-util.so.0', abi_type]
except KeyError:
- utils.print_col('Workaround failed: libxcb-util.so.0 not found.', 'red')
+ utils.print_error('Workaround failed: libxcb-util.so.0 not found.')
return
if len(libxcb_util_libs) > 1:
- utils.print_col(
+ utils.print_error(
f'Workaround failed: Multiple matching libxcb-util found: '
- f'{libxcb_util_libs}', 'red')
+ f'{libxcb_util_libs}')
return
libxcb_util_path = pathlib.Path(libxcb_util_libs[0])