Fix Py3 failures when installing MSVC dependencies

This commit is contained in:
Kagami Sascha Rosylight 2020-06-20 16:40:01 +02:00
parent 0b61cfc3ae
commit 74e0d02c03
2 changed files with 3 additions and 2 deletions

View file

@ -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