浏览代码

Fix misplaced quote in error messsage

(cherry picked from commit 748240b090bba9db9e4fea199ed23359663983f3)
Pedro J. Estébanez 8 年之前
父节点
当前提交
94fdbf67a9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/script_debugger_remote.cpp

+ 1 - 1
core/script_debugger_remote.cpp

@@ -74,7 +74,7 @@ Error ScriptDebuggerRemote::connect_to_host(const String &p_host, uint16_t p_por
 		} else {
 		} else {
 
 
 			OS::get_singleton()->delay_usec(1000000);
 			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.");
 		};
 		};
 	};
 	};