diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2017-07-27 01:26:30 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2017-07-27 01:26:30 +0200 |
commit | 748240b090bba9db9e4fea199ed23359663983f3 (patch) | |
tree | 0d66900d9ce74465bcccc9fbc5d856bdf30f6601 | |
parent | 2b99bd492b36ee75406f15e10e63acc6a70e650a (diff) |
Fix misplaced quote in error messsage
-rw-r--r-- | core/script_debugger_remote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_debugger_remote.cpp b/core/script_debugger_remote.cpp index a7b6f25590..dec41e7976 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."); }; }; |