summaryrefslogtreecommitdiff
path: root/qutebrowser
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser')
-rw-r--r--qutebrowser/misc/elf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/misc/elf.py b/qutebrowser/misc/elf.py
index 03e8ca0d6..78acba4f3 100644
--- a/qutebrowser/misc/elf.py
+++ b/qutebrowser/misc/elf.py
@@ -316,7 +316,7 @@ def parse_webenginecore() -> Optional[Versions]:
else:
library_path = pathlib.Path(QLibraryInfo.path(QLibraryInfo.LibraryPath.LibrariesPath))
- library_name = sorted(library_path.glob('libQt5WebEngineCore.so*'))
+ library_name = sorted(library_path.glob('libQt?WebEngineCore.so*'))
if not library_name:
log.misc.debug(f"No QtWebEngine .so found in {library_path}")
return None