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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-25 03:06:42 UTC
  • mfrom: (7045.3.4 python3-r)
  • Revision ID: breezy.the.bot@gmail.com-20180725030642-oghhedvui3470wy6
Fix another ~500 tests on Python 3.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
            offset = 0
335
335
            self.diff_writer.write(parsed.get_header())
336
336
            for hunk in parsed.hunks:
337
 
                self.diff_writer.write(str(hunk))
 
337
                self.diff_writer.write(bytes(hunk))
338
338
                selected = self.prompt_bool(self.reporter.vocab['hunk'],
339
339
                                            allow_editor=(self.change_editor
340
340
                                                          is not None))