upload: Data should use convergence by default

This commit is contained in:
Brian Warner 2008-01-30 19:02:56 -07:00
parent 81eeafc574
commit 44ff4c6605

View 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):