From 748240b090bba9db9e4fea199ed23359663983f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20J=2E=20Est=C3=A9banez?= Date: Thu, 27 Jul 2017 01:26:30 +0200 Subject: [PATCH] Fix misplaced quote in error messsage --- core/script_debugger_remote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/script_debugger_remote.cpp b/core/script_debugger_remote.cpp index a7b6f255908..dec41e79768 100644 --- a/core/script_debugger_remote.cpp +++ b/core/script_debugger_remote.cpp @@ -74,7 +74,7 @@ Error ScriptDebuggerRemote::connect_to_host(const String &p_host, uint16_t p_por } else { OS::get_singleton()->delay_usec(1000000); - print_line("Remote Debugger: Connection failed with status: " + String::num(tcp_client->get_status()) + "'', retrying in 1 sec."); + print_line("Remote Debugger: Connection failed with status: '" + String::num(tcp_client->get_status()) + "', retrying in 1 sec."); }; };