~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export/dir_exporter.py

MergeĀ fromĀ jam-integration.

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