/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/export/dir_exporter.py

[merge] jam-integration 1495

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    mutter('export version %r', tree)
38
38
    inv = tree.inventory
39
39
    for dp, ie in inv.iter_entries():
 
40
        # .bzrignore has no meaning outside of a working tree
 
41
        # so do not export it
 
42
        if dp == ".bzrignore":
 
43
            continue
 
44
        
40
45
        ie.put_on_disk(dest, dp, tree)
41
46