1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-07 17:36:07 +00:00

Merge pull request #9893 from RandomShaper/fix-err-format-2.1

Fix misplaced quote in error messsage
This commit is contained in:
Pedro J. Estébanez
2017-07-27 01:30:34 +02:00
committed by GitHub

View File

@@ -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.");
}; };
}; };