tahoe_ls: list individual files

This commit is contained in:
Brian Warner 2007-10-21 12:33:06 -07:00
parent 80d863ad2b
commit afcc8107af

View File

@ -25,6 +25,8 @@ def list(nodeurl, root_uri, vdrive_pathname, stdout, stderr):
assert childtype == "filenode"
size = child[1]['size']
print >>stdout, "%10s %s" % (size, name)
elif nodetype == "filenode":
print >>stdout, "%10s %s" % (d['size'], vdrive_pathname)