Skip to content

Commit 33549b2

Browse files
authored
Set encoding to utf-8 (#407)
* Updated clean script for Windows * Changed UTF-8 to utf-8
1 parent 63fe9dc commit 33549b2

File tree

1 file changed

+1
-1
lines changed
  • tulip-runtime/src/main/java/io/github/tulipltt/tulip/api

1 file changed

+1
-1
lines changed

tulip-runtime/src/main/java/io/github/tulipltt/tulip/api/TulipApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class TulipApi implements Callable<Integer> {
4848
public static String runTulip(String text, TulipUserFactory userFactory) {
4949
// Record the start time in nanoseconds
5050
long startTime = System.nanoTime();
51-
System.setProperty("python.console.encoding", "UTF-8");
51+
System.setProperty("python.console.encoding", "utf-8");
5252
String outputFilename = TulipKt.initConfig(text);
5353
TulipKt.runBenchmarks(userFactory);
5454
// createHtmlReport(outputFilename, text);

0 commit comments

Comments
 (0)