/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/fakevfat.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-09 15:39:00 UTC
  • mfrom: (1993 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1995.
  • Revision ID: john@arbash-meinel.com-20060909153900-a7d8b960eaac71d6
[merge] bzr.dev 1993

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
    def readv(self, relpath, offsets):
92
92
        return self._decorated.readv(self._squash_name(relpath), offsets)
93
93
 
94
 
    def put(self, relpath, f, mode=None):
95
 
        return self._decorated.put(self._squash_name(relpath), f, mode)
 
94
    def put_file(self, relpath, f, mode=None):
 
95
        return self._decorated.put_file(self._squash_name(relpath), f, mode)
96
96
 
97
97
 
98
98
class FakeVFATServer(DecoratorServer):