~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export/tar_exporter.py

  • Committer: Jamie Wilkinson
  • Date: 2005-12-29 03:26:31 UTC
  • mto: (1185.50.34 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1536.
  • Revision ID: jaq@spacepants.org-20051229032631-adc1a9413791860f
convert tabs to 4-spaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    mutter('export version %r', tree)
41
41
    inv = tree.inventory
42
42
    for dp, ie in inv.iter_entries():
43
 
                # .bzrignore has no meaning outside of a working tree
44
 
                # so do not export it
 
43
        # .bzrignore has no meaning outside of a working tree
 
44
        # so do not export it
45
45
        if dp == ".bzrignore":
46
 
                        continue
47
 
                
 
46
            continue
 
47
        
48
48
        mutter("  export {%s} kind %s to %s", ie.file_id, ie.kind, dest)
49
49
        item, fileobj = ie.get_tar_item(root, dp, now, tree)
50
50
        ball.addfile(item, fileobj)