From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> --- test/list-folders | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/list-folders b/test/list-folders index 7239d6d..ecd456c 100755 --- a/test/list-folders +++ b/test/list-folders @@ -6,13 +6,13 @@ import dbus def list_folder(folder): bus = dbus.SessionBus() - client = dbus.Interface(bus.get_object("org.openobex.client", "/"), - "org.openobex.Client") + client = dbus.Interface(bus.get_object("org.bluez.obex.client", "/"), + "org.bluez.obex.Client") - session_path = client.CreateSession(sys.argv[1], { "Target": "ftp" }) + path = client.CreateSession(sys.argv[1], { "Target": "ftp" }) - ftp = dbus.Interface(bus.get_object("org.openobex.client", session_path), - "org.openobex.FileTransfer") + ftp = dbus.Interface(bus.get_object("org.bluez.obex.client", path), + "org.bluez.obex.FileTransfer") if folder: for node in folder.split("/"): -- 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