Fix array signature for mdns call properties

This commit is contained in:
Dan Williams 2006-08-29 16:52:55 -04:00
parent 721ef6e29c
commit aea10ae900

View File

@ -659,7 +659,7 @@ class PresenceService(object):
# Add properties; ensure they are converted to ByteArray types # Add properties; ensure they are converted to ByteArray types
# because python sometimes can't figure that out # because python sometimes can't figure that out
info = dbus.Array([], signature="ab") info = dbus.Array([], signature="aay")
for k, v in properties.items(): for k, v in properties.items():
info.append(dbus.types.ByteArray("%s=%s" % (k, v))) info.append(dbus.types.ByteArray("%s=%s" % (k, v)))