beremiz

Runtime/unix: Fix typo preventing start of Pyro server
wxPython4
2021-09-10, Edouard Tisserant
d73af2eeea05
Parents 6a6d3c318a6b
Children 2c0511479b18
Runtime/unix: Fix typo preventing start of Pyro server
--- a/runtime/PyroServer.py Thu Sep 09 21:52:27 2021 +0200
+++ b/runtime/PyroServer.py Fri Sep 10 14:42:46 2021 +0200
@@ -68,7 +68,7 @@
others = []
if not sys.platform.startswith('win'):
self.piper, self.pipew = os.pipe()
- others.append = self.piper
+ others.append(self.piper)
self.daemon.requestLoop(others=others, callback=lambda x: None)
self.piper, self.pipew = None, None