/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/export/zip_exporter.py

  • Committer: Robert Collins
  • Date: 2006-07-24 04:40:06 UTC
  • mto: (1852.7.2 split-tree-source)
  • mto: This revision was merged to the branch mainline in revision 1890.
  • Revision ID: robertc@robertcollins.net-20060724044006-faa99aee0dff9ae9
Finish updating iter_entries change to make all tests pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    inv = tree.inventory
39
39
 
40
40
    try:
41
 
        for dp, ie in inv.iter_entries():
 
41
        entries = inv.iter_entries()
 
42
        entries.next() # skip root
 
43
        for dp, ie in entries:
42
44
            # .bzrignore has no meaning outside of a working tree
43
45
            # so do not export it
44
46
            if dp == ".bzrignore":