From 13ce770ed65b672c37b358a4f327d56db1a19929 Mon Sep 17 00:00:00 2001 From: AURUMVORXX Date: Fri, 31 Oct 2025 20:56:11 +0500 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=9E=D1=88=D0=B8=D0=B1=D0=BA=D0=B0=20?= =?UTF-8?q?=D1=81=20=D0=BF=D0=BE=D1=81=D0=BB=D0=B5=D0=B4=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D1=82=D0=B5=D0=BB=D1=8C=D0=BD=D0=BE=D1=81=D1=82=D1=8C=D1=8E=20?= =?UTF-8?q?\n=20=D0=B2=20print?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/server/messages.nut | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/server/messages.nut b/include/server/messages.nut index 75ff4ad..8ac269b 100644 --- a/include/server/messages.nut +++ b/include/server/messages.nut @@ -1,7 +1,7 @@ function _message_call(data) { - local compile_string = "try { " + data["data"] + " } catch(id) { print(\"[PyG2O] Error white executing the code: \" + id + \"\\nCode: " + data["data"] + "\"); return null; }"; + local compile_string = "try { " + data["data"] + " } catch(id) { print(\"[PyG2O] Error white executing the code: \" + id); return null; }"; local result = compilestring(compile_string)(); _send({"event": "sq_response", "uuid": data["uuid"], "data": result}); }