/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/workingtree_4.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:
71
71
    )
72
72
from .sixish import (
73
73
    BytesIO,
 
74
    viewitems,
74
75
    )
75
76
from .transport.local import LocalTransport
76
77
from .tree import (
1018
1019
                    raise errors.PathsNotVersionedError(
1019
1020
                        [p.decode('utf-8') for p in paths])
1020
1021
 
1021
 
        for dir_name_id, trees_info in found.iteritems():
 
1022
        for dir_name_id, trees_info in viewitems(found):
1022
1023
            for index in search_indexes:
1023
1024
                if trees_info[index][0] not in ('r', 'a'):
1024
1025
                    found_ids.add(dir_name_id[2])