From ba28ffa3db9af6e1a911d30135e95f3fdd50c1ba Mon Sep 17 00:00:00 2001 From: Joshua Rubin Date: Fri, 14 Aug 2020 00:50:22 -0600 Subject: [PATCH] Fix jack_control handling of dbus bytes Prior to this, `jack_control dps dither s` would return an error. --- example-clients/jack_control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-clients/jack_control b/example-clients/jack_control index 54277543..2ede9a08 100755 --- a/example-clients/jack_control +++ b/example-clients/jack_control @@ -43,7 +43,7 @@ def python_type_to_jackdbus_type(value, type_char): if type_char == "b": return bool_convert(value); elif type_char == "y": - return dbus.Byte(value); + return dbus.Byte(ord(value)); elif type_char == "i": return dbus.Int32(value) elif type_char == "u":