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

  • Committer: Jelmer Vernooij
  • Date: 2020-08-10 15:00:17 UTC
  • mfrom: (7490.40.99 work)
  • mto: This revision was merged to the branch mainline in revision 7521.
  • Revision ID: jelmer@jelmer.uk-20200810150017-vs7xnrd1vat4iktg
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
    osutils,
21
21
    trace,
22
22
    )
23
 
from .tree import TreeChange
 
23
from .bzr.inventorytree import InventoryTreeChange
24
24
 
25
25
 
26
26
class TreeDelta(object):
397
397
        dec_new_path = decorate_path(item.path[1], item.kind[1], item.meta_modified())
398
398
        to_file.write(' => %s' % dec_new_path)
399
399
        if item.changed_content or item.meta_modified():
400
 
            extra_modified.append(TreeChange(
 
400
            extra_modified.append(InventoryTreeChange(
401
401
                item.file_id, (item.path[1], item.path[1]),
402
402
                item.changed_content,
403
403
                item.versioned,