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:
authorNathan Letwory <nathan@letworyinteractive.com>2013-06-17 00:36:34 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2013-06-17 00:36:34 +0400
commit9dd639f169e524665e2b3cf357a9006748626655 (patch)
treee94af3a904d0c25467db9345c3b066776eb72d11 /build_files/scons/tools
parentf351bcca1708c12da72097e590c578447cd51e98 (diff)
Only printing errors.
(No news is good news).
Diffstat (limited to 'build_files/scons/tools')
-rw-r--r--build_files/scons/tools/btools.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/build_files/scons/tools/btools.py b/build_files/scons/tools/btools.py
index f98e9a28c44..868d443f8bb 100644
--- a/build_files/scons/tools/btools.py
+++ b/build_files/scons/tools/btools.py
@@ -233,8 +233,6 @@ class OurSpawn:
stderr=subprocess.PIPE, startupinfo=startupinfo, shell = False, env=env)
data, err = proc.communicate()
rv = proc.wait()
- if data:
- print(data)
if err:
print(err)
return rv