--- tools/test-runner | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test-runner b/tools/test-runner index f18ae538..1ee2d6a6 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -46,11 +46,11 @@ TEST_MAX_TIMEOUT = 120 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) -def dbg(*s): +def dbg(*s, **kwargs): ''' Allows prints if stdout has been re-directed ''' - print(*s, file=sys.__stdout__) + print(*s, **kwargs, file=sys.__stdout__) def exit_vm(): if config: -- 2.31.1