summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/methods.py b/methods.py
index 64c3839718..1fb6f367b0 100644
--- a/methods.py
+++ b/methods.py
@@ -409,8 +409,7 @@ def use_windows_spawn_fix(self, platform=None):
"shell": False,
"env": env,
}
- if sys.version_info >= (3, 7, 0):
- popen_args["text"] = True
+ popen_args["text"] = True
proc = subprocess.Popen(cmdline, **popen_args)
_, err = proc.communicate()
rv = proc.wait()