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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 22:12:58 UTC
  • mfrom: (6973.11.15 python3-j)
  • Revision ID: breezy.the.bot@gmail.com-20180630221258-x0y3tvn1060ntndc
Fix another 1.5k tests on python3.

Merged from https://code.launchpad.net/~jelmer/brz/python3-j/+merge/348346

Show diffs side-by-side

added added

removed removed

Lines of Context:
990
990
            properties_changed.extend(get_executable_change(executable[0], executable[1]))
991
991
 
992
992
            if properties_changed:
993
 
                prop_str = b" (properties changed: %s)" % (", ".join(properties_changed),)
 
993
                prop_str = b" (properties changed: %s)" % (
 
994
                        b", ".join(properties_changed),)
994
995
            else:
995
996
                prop_str = b""
996
997