Fix jack_control handling of dbus bytes

Prior to this, `jack_control dps dither s` would return an error.
This commit is contained in:
Joshua Rubin 2020-08-14 00:50:22 -06:00 committed by Filipe Coelho
parent 34fb7b6963
commit ba28ffa3db
1 changed files with 1 additions and 1 deletions

View File

@ -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":