aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorbors-servo <servo-ops@mozilla.com>2020-06-20 13:50:47 -0400
committerGitHub <noreply@github.com>2020-06-20 13:50:47 -0400
commit292704b1f3e0a27f8ec72c752de612c12e4b0ae9 (patch)
tree9b35934a7afbf1513e992bf380e578e72fc53881 /python/servo/command_base.py
parent6b321f645af04f422ecfea453d3bce1b4dcc04c9 (diff)
parent74e0d02c03094ddf52ea6cae0954e08b37f03dac (diff)
downloadservo-292704b1f3e0a27f8ec72c752de612c12e4b0ae9.tar.gz
servo-292704b1f3e0a27f8ec72c752de612c12e4b0ae9.zip
Auto merge of #27003 - saschanaz:py3-msvc-deps, r=jdm
Fix Py3 failures when installing MSVC dependencies <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #___ (GitHub issue number if applicable) <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because ___ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py2
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