~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export/zip_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:
39
39
 
40
40
    try:
41
41
        for dp, ie in inv.iter_entries():
 
42
            # .bzrignore has no meaning outside of a working tree
 
43
            # so do not export it
 
44
            if dp == ".bzrignore":
 
45
                continue
42
46
 
43
47
            file_id = ie.file_id
44
48
            mutter("  export {%s} kind %s to %s", file_id, ie.kind, dest)