mirror of
https://github.com/servo/servo.git
synced 2025-07-18 12:53:40 +01:00
Fix Py3 failures when installing MSVC dependencies
This commit is contained in:
parent
0b61cfc3ae
commit
74e0d02c03
2 changed files with 3 additions and 2 deletions
|
@ -216,7 +216,7 @@ def is_linux():
|
|||
def append_to_path_env(string, env, name):
|
||||
variable = ""
|
||||
if name in env:
|
||||
variable = env[name]
|
||||
variable = six.ensure_str(env[name])
|
||||
if len(variable) > 0:
|
||||
variable += os.pathsep
|
||||
variable += string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue