]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
upload: Data should use convergence by default
authorBrian Warner <warner@allmydata.com>
Thu, 31 Jan 2008 02:02:56 +0000 (19:02 -0700)
committerBrian Warner <warner@allmydata.com>
Thu, 31 Jan 2008 02:02:56 +0000 (19:02 -0700)
src/allmydata/upload.py

index 32d2ecc28a0ba467e74d76445e7af90efc4cfce1..9837f62a87fed4959e42364c7c4289637bd81f27 100644 (file)
@@ -920,7 +920,7 @@ class FileName(FileHandle):
         self._filehandle.close()
 
 class Data(FileHandle):
-    def __init__(self, data, contenthashkey=False):
+    def __init__(self, data, contenthashkey=True):
         FileHandle.__init__(self, StringIO(data), contenthashkey=contenthashkey)
 
 class Uploader(service.MultiService):