Skip to content

Commit 74d8cba

Browse files
Fix: single quote for messageformat when string has arbitrary chars (#547)
1 parent 5dda553 commit 74d8cba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/com.espressif.idf.ui/src/com/espressif/idf/ui/InitializeToolsStartup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void run()
100100
File idf_json_file = new File(url.getPath() + File.separator + ESP_IDF_JSON_FILE);
101101
if (!idf_json_file.exists())
102102
{
103-
Logger.log(MessageFormat.format("esp-idf.json file doesn't exist at this location: {0}", url.getPath()));
103+
Logger.log(MessageFormat.format("esp-idf.json file doesn't exist at this location: '{0}'", url.getPath()));
104104
return;
105105
}
106106

0 commit comments

Comments
 (0)