diff options
author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2020-06-20 16:40:01 +0200 |
---|---|---|
committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2020-06-20 16:40:01 +0200 |
commit | 74e0d02c03094ddf52ea6cae0954e08b37f03dac (patch) | |
tree | 33cf13b435c15335d6891f6301bcfba59ac11b39 /python/servo/command_base.py | |
parent | 0b61cfc3ae803ac0f9deef937f890f83b24c9a35 (diff) | |
download | servo-74e0d02c03094ddf52ea6cae0954e08b37f03dac.tar.gz servo-74e0d02c03094ddf52ea6cae0954e08b37f03dac.zip |
Fix Py3 failures when installing MSVC dependencies
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index db9f550e61d..726afd0d0c7 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -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 |