Remove an invisible character from `ProjectUtilities.writeTextFile()` call

This commit is contained in:
Adam Goldsmith 2021-09-16 15:45:24 -04:00
parent ca4bb08a7a
commit 7b58aacc79
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ cards.sort(function (a, b) {
});
const file = new File(Eons.getOpenProject().getFile(), pack_code + '.json');
printf("Writing '%s'\n", file);
ProjectUtilities.writeTextFile(file, JSON.stringify(cards, null, 4));
ProjectUtilities.writeTextFile(file, JSON.stringify(cards, null, 4));
println("Done!");
Eons.getOpenProject().synchronize();