~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export/zip_exporter.py

  • Committer: Andrew Bennetts
  • Date: 2008-08-07 00:25:38 UTC
  • mfrom: (3612 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3613.
  • Revision ID: andrew.bennetts@canonical.com-20080807002538-mtl1fcgy2fdabha4
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
        entries = inv.iter_entries()
56
56
        entries.next() # skip root
57
57
        for dp, ie in entries:
58
 
            # .bzrignore has no meaning outside of a working tree
59
 
            # so do not export it
60
 
            if dp == ".bzrignore":
 
58
            # The .bzr* namespace is reserved for "magic" files like
 
59
            # .bzrignore and .bzrrules - do not export these
 
60
            if dp.startswith(".bzr"):
61
61
                continue
62
62
 
63
63
            file_id = ie.file_id