Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-08 19:44:47 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-08 19:45:08 +0300
commit7ab936c5b9e145b8de21e91a28a993c09d9274b1 (patch)
tree484797ade490b9bee16931ab6608897ba013aa95 /build_files/utils
parenta9dbc2ef4a73a26e426704fd22eec630f9685566 (diff)
Fix T69640: make update not working with Python older than 3.7
Diffstat (limited to 'build_files/utils')
-rwxr-xr-xbuild_files/utils/make_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/utils/make_utils.py b/build_files/utils/make_utils.py
index 9a1f740a393..0c63a18b0ba 100755
--- a/build_files/utils/make_utils.py
+++ b/build_files/utils/make_utils.py
@@ -24,7 +24,7 @@ def check_output(cmd, exit_on_error=True):
sys.stderr.flush()
try:
- output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, text=True)
+ output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, universal_newlines=True)
except subprocess.CalledProcessError as e:
if exit_on_error:
sys.stderr.write(" ".join(cmd))