~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-02 06:24:16 UTC
  • mfrom: (3635.1.3 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080902062416-dxdxccqki90bcynl
(robertc) Fix repack operations on SMB connections. (Robert Collins,
        bug 255656).

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
        self.file_handle.close()
255
255
 
256
256
    def write(self, bytes):
257
 
        self.file_handle.write(bytes)
 
257
        osutils.pump_string_file(bytes, self.file_handle)
258
258
 
259
259
 
260
260
class AppendBasedFileStream(FileStream):