From 96dba85659ed02ed96fb1bce71f8a87c23772d24 Mon Sep 17 00:00:00 2001 From: Aleteoryx Date: Sat, 27 Dec 2025 22:30:31 -0500 Subject: [PATCH] oops --- queuers/reenc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/queuers/reenc.py b/queuers/reenc.py index c7bd8889868d1a5a73a4b0d054b37c824d296ccf..052063373285c9bd5a5687ab6266c0f9b783c1a1 100644 --- a/queuers/reenc.py +++ b/queuers/reenc.py @@ -26,8 +26,8 @@ from typing import Optional from os import system import socket -#RESOLUTIONS=[(1280, 720), (1366, 768), (1920, 1080)] -RESOLUTIONS=[(710, 480), (1136, 768)] +RESOLUTIONS=[(1280, 720), (1366, 768), (1920, 1080)] +#RESOLUTIONS=[(710, 480), (1136, 768)] argv0 = 'reenc.py' @@ -41,7 +41,7 @@ class JobError(Exception): def send_cmd(reader, writer, cmd): lines = [] - writer.write(cmd+'\n') + writer.write(cmd.encode()+b'\n') writer.flush() while True: line = reader.readline()