summaryrefslogtreecommitdiff
path: root/CoupServ.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xCoupServ.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/CoupServ.py b/CoupServ.py
index 9634f06..53a5965 100755
--- a/CoupServ.py
+++ b/CoupServ.py
@@ -145,7 +145,7 @@ usercount = 0
def read_and_send():
for line in sys.stdin:
try:
- send(line.rstrip(b"\n"))
+ send(line.rstrip("\n").encode("UTF-8"))
except Exception:
pass