From: Mikel Astiz <mikel.astiz@xxxxxxxxxxxx> The test script still accepts several files in the argument list and internally uses a loop to individually send them with SendFile. --- test/send-files | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/test/send-files b/test/send-files index 504a066..aa4862f 100755 --- a/test/send-files +++ b/test/send-files @@ -20,4 +20,5 @@ session_path = client.CreateSession({"Destination": sys.argv[1], opp = dbus.Interface(bus.get_object("org.openobex.client", session_path), "org.openobex.ObjectPush") -opp.SendFiles(files) +for f in files: + opp.SendFile(f) -- 1.7.7.6 -- 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