[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/File - FileChunk.py:1.3
Marius Gedminas
mgedmin@delfi.lt
Tue, 25 Jun 2002 06:45:22 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/File
In directory cvs.zope.org:/tmp/cvs-serv23188/lib/python/Zope/App/OFS/Content/File
Modified Files:
FileChunk.py
Log Message:
Fixed apparent typos in FileChunk.__str__
=== Zope3/lib/python/Zope/App/OFS/Content/File/FileChunk.py 1.2 => 1.3 ===
return self._data
- result = [self.data]
+ result = [self._data]
while next is not None:
self = next
- r.append(self._data)
+ result.append(self._data)
next = self.next
- return ''.join(r)
+ return ''.join(result)