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

Unshelved all changes except those related to removing RootEntry

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    """Write out inv in a simple trad-unix text format."""
54
54
    outf.write(START_MARK)
55
55
    for path, ie in inv.iter_entries():
56
 
        if ie.kind == 'root_directory':
 
56
        if inv.is_root(ie.file_id):
57
57
            continue
58
58
        
59
59
        outf.write(ie.file_id + ' ')