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

  • Committer: Jelmer Vernooij
  • Date: 2019-04-06 16:43:15 UTC
  • mto: (7296.6.2 patch-silent)
  • mto: This revision was merged to the branch mainline in revision 7309.
  • Revision ID: jelmer@jelmer.uk-20190406164315-829rxxzhb9kpjznn
Fix some tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
        raise PatchInvokeError(e)
154
154
    try:
155
155
        for patch in patches:
156
 
            process.stdin.write(str(patch))
 
156
            process.stdin.write(bytes(patch))
157
157
        process.stdin.close()
158
158
 
159
159
    except IOError as e: