More progress towards passing tests on Python 3.

This commit is contained in:
Itamar Turner-Trauring
2020-10-16 11:13:11 -04:00
parent f689d59a40
commit 51d472e221
4 changed files with 21 additions and 10 deletions

View File

@ -1020,8 +1020,8 @@ class _Client(node.Node, pollmixin.PollMixin):
def init_control(self):
c = ControlServer()
c.setServiceParent(self)
control_url = self.control_tub.registerReference(c).encode("utf-8")
self.config.write_private_config("control.furl", control_url + b"\n")
control_url = self.control_tub.registerReference(c)
self.config.write_private_config("control.furl", control_url + "\n")
def init_helper(self):
self.helper = Helper(self.config.get_config_path("helper"),