/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/bzrbranch.py

  • Committer: Jelmer Vernooij
  • Date: 2017-06-05 22:01:28 UTC
  • mfrom: (6658 work)
  • mto: This revision was merged to the branch mainline in revision 6666.
  • Revision ID: jelmer@jelmer.uk-20170605220128-xurjonb8cjf5o52j
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
from .lock import _RelockDebugMixin, LogicalLockResult
52
52
from .sixish import (
53
53
    BytesIO,
 
54
    viewitems,
54
55
    )
55
56
from .trace import (
56
57
    mutter,
468
469
        """
469
470
        s = BytesIO()
470
471
        writer = rio.RioWriter(s)
471
 
        for key, (tree_path, branch_location) in info_dict.iteritems():
 
472
        for key, (tree_path, branch_location) in viewitems(info_dict):
472
473
            stanza = rio.Stanza(file_id=key, tree_path=tree_path,
473
474
                                branch_location=branch_location)
474
475
            writer.write_stanza(stanza)