Skip to content

Commit 9dafaaf

Browse files
authored
Add -X utf8 to command for python (#17)
Per Fujii-san's comment on https://bugs.webkit.org/show_bug.cgi?id=223496 this should fix some test failures due to codec conversion failures.
1 parent a84e68f commit 9dafaaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WebKitDev/Functions/Update-XamppPythonLocation.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Function Update-XamppPythonLocation {
2929
return;
3030
}
3131

32-
$registryValue = ('{0}' -f $pythonExecutable);
32+
$registryValue = ('{0} -X utf8' -f $pythonExecutable);
3333

3434
# Add python filetype value
3535
$registryPath = 'HKCR:\.py\Shell\ExecCGI\Command';

0 commit comments

Comments
 (0)