From abdf73adf24f56df9aed242a50e5ee5a1bf1fdc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Tue, 3 May 2022 13:01:22 +0200 Subject: [PATCH] build: filter more dbus bug assert to avoid log bloat (#64790) --- src/inkscape_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inkscape_wrapper.py b/src/inkscape_wrapper.py index 199692f86..9a7399b86 100755 --- a/src/inkscape_wrapper.py +++ b/src/inkscape_wrapper.py @@ -20,7 +20,7 @@ inkscape = subprocess.Popen( ) for line in inkscape.stdout: - if "dbus_g_connection_register_g_object: assertion 'connection != NULL' failed" in line: + if "dbus_" in line and ": assertion 'connection != NULL' failed" in line: continue sys.stdout.write(line)