/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 breezy/bundle/bundle_data.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-30 19:32:13 UTC
  • mfrom: (6637 work)
  • mto: This revision was merged to the branch mainline in revision 6639.
  • Revision ID: jelmer@jelmer.uk-20170530193213-qm21s6dc7dln237t
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
766
766
        entries = inv.iter_entries(from_dir=from_dir_id, recursive=recursive)
767
767
        if inv.root is not None and not include_root and from_dir is None:
768
768
            # skip the root for compatability with the current apis.
769
 
            entries.next()
 
769
            next(entries)
770
770
        for path, entry in entries:
771
771
            yield path, 'V', entry.kind, entry.file_id, entry
772
772