~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export/dir_exporter.py

  • Committer: Martin Pool
  • Date: 2006-01-06 01:13:05 UTC
  • mfrom: (1534.1.4 integration)
  • Revision ID: mbp@sourcefrog.net-20060106011305-3772285d84b5cbb4
[merge] robertc

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