fixed typo

This commit is contained in:
iLLiCiTiT 2020-10-16 10:49:42 +02:00
parent 4113c07281
commit 9880488255

View file

@ -102,7 +102,7 @@ def _subprocess(*args, logger=None, **kwargs):
# Get environents from kwarg or use current process environments if were
# not passed.
env = kwargs.get("env") or os.envion
env = kwargs.get("env") or os.environ
# Make sure environment contains only strings
filtered_env = {k: str(v) for k, v in env.items()}