From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This makes map-client to print the message properties dictionary --- test/map-client | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/map-client b/test/map-client index da357a9..986fcad 100755 --- a/test/map-client +++ b/test/map-client @@ -54,6 +54,9 @@ if __name__ == '__main__': print "%s/" % (i["Name"]) if options.ls_msg is not None: - print map.GetMessageListing(options.ls_msg, dict()) + for i in map.GetMessageListing(options.ls_msg, dict()): + for (key, value) in i.items(): + print("%s = %s" % (key, value)) + print "\n" mainloop.run() -- 1.7.10.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html