diff options
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 |