~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: Martin Pool
  • Date: 2006-02-01 12:24:35 UTC
  • mfrom: (1534.4.32 branch-formats)
  • mto: This revision was merged to the branch mainline in revision 1553.
  • Revision ID: mbp@sourcefrog.net-20060201122435-53f3efb1b5749fe1
[merge] branch-formats branch, and reconcile changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
        """Create a directory at the given path."""
212
212
        raise TransportNotPossible('http does not support mkdir()')
213
213
 
 
214
    def rmdir(self, relpath):
 
215
        """See Transport.rmdir."""
 
216
        raise TransportNotPossible('http does not support rmdir()')
 
217
 
214
218
    def append(self, relpath, f):
215
219
        """Append the text in the file-like object into the final
216
220
        location.