From: Brian Warner Date: Thu, 1 Nov 2007 22:29:03 +0000 (-0700) Subject: trailing-whitespace eradication, no functional changes X-Git-Tag: allmydata-tahoe-0.7.0~318 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=3425cd9202f5d25c619c53a4459864cf28af9cc5;p=tahoe-lafs%2Ftahoe-lafs.git trailing-whitespace eradication, no functional changes --- diff --git a/src/allmydata/scripts/tahoe_put-web2ish.py b/src/allmydata/scripts/tahoe_put-web2ish.py index 2269cd28..4990ebdc 100644 --- a/src/allmydata/scripts/tahoe_put-web2ish.py +++ b/src/allmydata/scripts/tahoe_put-web2ish.py @@ -21,7 +21,7 @@ def _put(serverurl, vdrive_fname, local_fname, verbosity): port = int(mo.group(3)) d = defer.Deferred() - + url = "/vdrive/global/" if vdrive_fname: url += urllib.quote(vdrive_fname) @@ -31,7 +31,7 @@ def _put(serverurl, vdrive_fname, local_fname, verbosity): else: infileobj = open(local_fname, "rb") instream = stream.FileStream(infileobj) - + d2 = protocol.ClientCreator(reactor, HTTPClientProtocol).connectTCP(host, port) def got_resp(resp): @@ -63,7 +63,7 @@ def _put(serverurl, vdrive_fname, local_fname, verbosity): outbuf.append("200 (OK); ") elif resp.code == 201: outbuf.append("201 (Created); ") - + if verbosity == 2: if resp.code == 200: outbuf.append("modified existing mapping of name %s to point to " % (vdrive_fname,)) @@ -71,14 +71,14 @@ def _put(serverurl, vdrive_fname, local_fname, verbosity): outbuf.append("created new mapping of name %s to point to " % (vdrive_fname,)) outbuf.append("URI: %s" % (uri,)) - + sys.stdout.write(''.join(outbuf)) sys.stdout.write("\n") d.callback(resp.code) stream.readStream(resp.stream, gather_uri).addCallback(output_result) - + def send_req(proto): proto.submitRequest(ClientRequest('PUT', url, {}, instream)).addCallback(got_resp) @@ -101,7 +101,7 @@ def put(server, vdrive_fname, local_fname, verbosity): exitcode[0] = result reactor.stop() return result - + d.addCallbacks(exit, exit) reactor.run() return exitcode[0]