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

Fix syntax errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    )
35
35
from bzrlib.foreign import (
36
36
        ForeignRepository,
37
 
        ForeignRevision,
38
37
        )
39
38
from bzrlib.trace import mutter
40
39
from bzrlib.transport import get_transport
249
248
                child_path = name
250
249
            else:
251
250
                child_path = urlutils.join(path, name)
252
 
            file_id = mapping.generate_file_id(child_path
 
251
            file_id = self.mapping.generate_file_id(child_path)
253
252
            entry_kind = (mode & 0700000) / 0100000
254
253
            if entry_kind == 0:
255
254
                child_ie = inventory.InventoryDirectory(file_id, basename, ie.file_id)