]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
tahoe_cp.py: fix pyflakes complaint
authorBrian Warner <warner@allmydata.com>
Wed, 21 May 2008 19:09:13 +0000 (12:09 -0700)
committerBrian Warner <warner@allmydata.com>
Wed, 21 May 2008 19:09:13 +0000 (12:09 -0700)
src/allmydata/scripts/tahoe_cp.py

index 661272afd3a9315ad713f3a0826df9d7edd98f08..c354a40bf882a73d542bb0dd37e0f89b4ccdda78 100644 (file)
@@ -284,8 +284,7 @@ class TahoeDirectoryTarget:
         # TODO: this always creates immutable files. We might want an option
         # to always create mutable files, or to copy mutable files into new
         # mutable files.
-        resp = do_http("PUT", url, inf)
-        filecap = check_PUT(resp)
+        filecap = PUT(url, inf)
         self.new_children[name] = filecap
 
     def put_uri(self, name, filecap):