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)