tahoe_cp.py: fix pyflakes complaint

This commit is contained in:
Brian Warner 2008-05-21 12:09:13 -07:00
parent 7afd869854
commit 7ae432abf8

View File

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