81
81
def _copy_one(self, fileid, suffix, other, pb):
82
82
if not (isinstance(other, CompressedTextStore)
83
83
and other._prefixed == self._prefixed):
84
return super(CompressedTextStore, self)._copy_one(fileid, suffix,
84
return super(CompressedTextStore, self)._copy_one(fileid, suffix, other, pb)
86
85
if suffix is None or suffix == 'gz':
87
86
path = self._relpath(fileid)
89
88
path = self._relpath(fileid, [suffix])
92
92
def __init__(self, transport, prefixed=False):
93
93
super(CompressedTextStore, self).__init__(transport, prefixed)