build: filter more dbus bug assert to avoid log bloat (#64790)

This commit is contained in:
Corentin Sechet 2022-05-03 13:01:22 +02:00
parent 8b59667ca1
commit abdf73adf2
1 changed files with 1 additions and 1 deletions

View File

@ -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)