~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: Robert Collins
  • Date: 2005-10-20 03:06:20 UTC
  • mfrom: (1185.16.80)
  • Revision ID: robertc@robertcollins.net-20051020030620-3fa3160be265c585
mergeĀ fromĀ Martin

Show diffs side-by-side

added added

removed removed

Lines of Context:
228
228
        :return: A lock object, which should be passed to Transport.unlock()
229
229
        """
230
230
        raise TransportNotPossible('http does not support lock_write()')
231
 
 
232
 
register_transport('http://', HttpTransport)
233
 
register_transport('https://', HttpTransport)