/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/git/git_remote_helper.py

  • Committer: Jelmer Vernooij
  • Date: 2019-03-04 07:14:58 UTC
  • mto: (7290.1.13 work)
  • mto: This revision was merged to the branch mainline in revision 7295.
  • Revision ID: jelmer@jelmer.uk-20190304071458-2zp29edsanbi1560
Fix tests on Python 3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
            self.batchcmd = None
187
187
        else:
188
188
            try:
189
 
                self.commands[argv[0]](self, outf, argv)
 
189
                self.commands[argv[0].decode()](self, outf, argv)
190
190
            except KeyError:
191
191
                raise Exception("Unknown remote command %r" % argv)
192
192
        outf.flush()