From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This makes map-client to print only the name of the folders similar to what ftp-client does. --- test/map-client | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/map-client b/test/map-client index bf843f3..da357a9 100755 --- a/test/map-client +++ b/test/map-client @@ -50,7 +50,8 @@ if __name__ == '__main__': set_folder(map, options.new_dir) if options.ls_dir: - print map.GetFolderListing(dict()) + for i in map.GetFolderListing(dict()): + print "%s/" % (i["Name"]) if options.ls_msg is not None: print map.GetMessageListing(options.ls_msg, dict()) -- 1.7.10.4 -- 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