From 1b4474a822862ec48d5052ebdd663fdff13c9e88 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 199692f8..f630286f 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 "assertion 'connection != NULL' failed" in line: continue sys.stdout.write(line) -- 2.35.1