diff options
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/util.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python/servo/util.py b/python/servo/util.py index f6b430a8f26..53caf675cdd 100644 --- a/python/servo/util.py +++ b/python/servo/util.py @@ -19,7 +19,6 @@ import urllib.request import zipfile from typing import Dict, List, Union -import six from io import BufferedIOBase, BytesIO from socket import error as socket_error @@ -188,7 +187,7 @@ def append_paths_to_env(env: Dict[str, str], key: str, paths: Union[str, List[st existing_value = env.get(key, None) if existing_value: - new_value = six.ensure_str(existing_value) + os.pathsep + paths + new_value = str(existing_value) + os.pathsep + paths else: new_value = paths env[key] = new_value @@ -201,7 +200,7 @@ def prepend_paths_to_env(env: Dict[str, str], key: str, paths: Union[str, List[s existing_value = env.get(key, None) new_value = paths if existing_value: - new_value += os.pathsep + six.ensure_str(existing_value) + new_value += os.pathsep + str(existing_value) env[key] = new_value |