/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/__init__.py

  • Committer: Andrew Bennetts
  • Date: 2008-10-27 06:14:45 UTC
  • mfrom: (3793 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3795.
  • Revision ID: andrew.bennetts@canonical.com-20081027061445-eqt9lz6uw1mbvq4g
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
class TransportListRegistry(registry.Registry):
101
101
    """A registry which simplifies tracking available Transports.
102
102
 
103
 
    A registration of a new protocol requires two step:
 
103
    A registration of a new protocol requires two steps:
104
104
    1) register the prefix with the function register_transport( )
105
105
    2) register the protocol provider with the function
106
106
    register_transport_provider( ) ( and the "lazy" variant )
293
293
    _bytes_to_read_before_seek = 0
294
294
 
295
295
    def __init__(self, base):
296
 
        super(Transport, self).__init__(base=base)
 
296
        super(Transport, self).__init__()
297
297
        self.base = base
298
298
 
299
299
    def _translate_error(self, e, path, raise_generic=True):