/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: Canonical.com Patch Queue Manager
  • Date: 2008-05-20 07:16:50 UTC
  • mfrom: (3431.3.11 bug-230550)
  • Revision ID: pqm@pqm.ubuntu.com-20080520071650-9vbizb6v6ji8k1jy
Fix spurious "No repository present" errors when accessing branches
        in shared repos via bzr+http.

Show diffs side-by-side

added added

removed removed

Lines of Context:
293
293
    _bytes_to_read_before_seek = 0
294
294
 
295
295
    def __init__(self, base):
296
 
        super(Transport, self).__init__()
 
296
        super(Transport, self).__init__(base=base)
297
297
        self.base = base
298
298
 
299
299
    def _translate_error(self, e, path, raise_generic=True):