Dear InstantRst,
It seems that when the file contains utf-8 code (that are not ascii code) the server fail to serve.
In the code of server.py I have replace
open(file, "r")
by
open(file, mode="rt", encoding="utf8")
To solve the problem.
Best regards,
Vivian.
Dear InstantRst,
It seems that when the file contains utf-8 code (that are not ascii code) the server fail to serve.
In the code of server.py I have replace
open(file, "r")by
open(file, mode="rt", encoding="utf8")To solve the problem.
Best regards,
Vivian.