/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

Update to bzr.dev.

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):
537
537
        *NOTE*: This only lists *files*, not subdirectories!
538
538
        
539
539
        As with other listing functions, only some transports implement this,.
540
 
        you may check via is_listable to determine if it will.
 
540
        you may check via listable() to determine if it will.
541
541
        """
542
542
        raise errors.TransportNotPossible("This transport has not "
543
543
                                          "implemented iter_files_recursive "