diff options
Diffstat (limited to 'python/servo/visual_studio.py')
-rw-r--r-- | python/servo/visual_studio.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/servo/visual_studio.py b/python/servo/visual_studio.py index c63ffe2f54c..1c0b99e8c03 100644 --- a/python/servo/visual_studio.py +++ b/python/servo/visual_studio.py @@ -57,7 +57,8 @@ def find_compatible_msvc_with_vswhere() -> Generator[VisualStudioInstallation, N '-format', 'json', '-products', '*', '-requires', 'Microsoft.VisualStudio.Component.VC.Tools.x86.x64', - '-requires', 'Microsoft.VisualStudio.Component.Windows10SDK' + '-requires', 'Microsoft.VisualStudio.Component.Windows10SDK', + '-utf8' ]).decode(errors='ignore') for install in json.loads(output): |