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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 19:38:57 UTC
  • mfrom: (7143.16.21 even-more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116193857-bs5oma2655sp55qu
Fix another dozen flake8 errors.

Merged from https://code.launchpad.net/~jelmer/brz/even-more-cleanups/+merge/358931

Show diffs side-by-side

added added

removed removed

Lines of Context:
727
727
                changed_content = True
728
728
        elif source_kind == 'symlink':
729
729
            if (self.source.get_symlink_target(source_path) !=
730
 
                self.target.get_symlink_target(target_path)):
 
730
                    self.target.get_symlink_target(target_path)):
731
731
                changed_content = True
732
732
        elif source_kind == 'tree-reference':
733
733
            if (self.source.get_reference_revision(source_path)
734
 
                != self.target.get_reference_revision(target_path)):
 
734
                    != self.target.get_reference_revision(target_path)):
735
735
                    changed_content = True
736
736
        parent = (source_parent, target_parent)
737
737
        name = (source_name, target_name)