From: Zooko O'Whielacronx Date: Wed, 11 Jul 2007 02:46:40 +0000 (-0700) Subject: tahoe_ls: remove a couple of vestigial or debugging bits X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=32166c360a2c22a02d9a68a301dc23a7f437730c;p=tahoe-lafs%2Ftahoe-lafs.git tahoe_ls: remove a couple of vestigial or debugging bits --- diff --git a/src/allmydata/scripts/tahoe_ls.py b/src/allmydata/scripts/tahoe_ls.py index dd3c1773..d94c3f17 100644 --- a/src/allmydata/scripts/tahoe_ls.py +++ b/src/allmydata/scripts/tahoe_ls.py @@ -3,10 +3,6 @@ import urllib import simplejson -def GET(url, outf): - f = urllib.urlopen(url) - outf.write(f.read()) - def list(server, vdrive, vdrive_file): if server[-1] != "/": @@ -15,7 +11,6 @@ def list(server, vdrive, vdrive_file): if vdrive_file: url += vdrive_file url += "?t=json" - print "URL:", url data = urllib.urlopen(url).read() parsed = simplejson.loads(data)