/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos

  • Committer: Teddy Hogeborn
  • Date: 2018-02-06 19:49:19 UTC
  • Revision ID: teddy@recompile.se-20180206194919-rfmlt49naz5jnpfx
Fix Python 3 issue

* (mandos/MandosServer.handle_ipc): Decode bytes into string.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2579
2579
        command = request[0]
2580
2580
 
2581
2581
        if command == 'init':
2582
 
            fpr = request[1]
 
2582
            fpr = request[1].decode("ascii")
2583
2583
            address = request[2]
2584
2584
 
2585
2585
            for c in self.clients.values():