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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-06-26 14:22:04 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-06-26 14:22:04 +0400
commita5d5f7fe1624ad5a12bb1e9b1491d1d4790a6b24 (patch)
tree6f7cf46ca4444434e5ad6d250cdd3603957df7e3 /build_files
parentee20433cf3a817a363816038b738b96e51ebd78c (diff)
Another attempt to solve compilation error
Sorry for the noise, but it's tricky to troubleshoot stuff which only happens on buildbot..
Diffstat (limited to 'build_files')
-rw-r--r--build_files/scons/tools/btools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/scons/tools/btools.py b/build_files/scons/tools/btools.py
index 434598a015e..4124d066734 100644
--- a/build_files/scons/tools/btools.py
+++ b/build_files/scons/tools/btools.py
@@ -26,7 +26,7 @@ def get_command_output(*popenargs, **kwargs):
cmd = kwargs.get("args")
if cmd is None:
cmd = popenargs[0]
- raise subprocess.CalledProcessError(retcode, cmd, output=output)
+ raise subprocess.CalledProcessError(retcode, cmd)
return output
def get_version():