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:
authorCampbell Barton <ideasman42@gmail.com>2013-01-16 03:17:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-16 03:17:45 +0400
commit769ab3eed81e8b14dff46af7ca28e2b70a7aac41 (patch)
tree5c8949a5fddfc7a287375c2d0913cdf2150feff7 /build_files/cmake/project_source_info.py
parent97d62f018397d279f6f1654c76d1e6b414c9d343 (diff)
code cleanup:
- cycles ui used 'cscene' for scene.cycles and scene.cycles_curves - style cleanup
Diffstat (limited to 'build_files/cmake/project_source_info.py')
-rw-r--r--build_files/cmake/project_source_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/project_source_info.py b/build_files/cmake/project_source_info.py
index 69d09b05ac7..1adc4689eae 100644
--- a/build_files/cmake/project_source_info.py
+++ b/build_files/cmake/project_source_info.py
@@ -89,12 +89,12 @@ def makefile_log():
if make_exe_basename.startswith("make"):
print("running 'make' with --dry-run ...")
process = subprocess.Popen([make_exe, "--always-make", "--dry-run", "--keep-going", "VERBOSE=1"],
- stdout=subprocess.PIPE,
+ stdout=subprocess.PIPE,
)
elif make_exe_basename.startswith("ninja"):
print("running 'ninja' with -t commands ...")
process = subprocess.Popen([make_exe, "-t", "commands"],
- stdout=subprocess.PIPE,
+ stdout=subprocess.PIPE,
)
while process.poll():