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:
authorBastien Montagne <bastien@blender.org>2021-09-13 12:38:54 +0300
committerBastien Montagne <bastien@blender.org>2021-09-13 12:41:43 +0300
commit9d6e960e2c3b65f7b4fbe35db3b832f1fd3d7f30 (patch)
treeb432580bec93992516d23b5c2880e509e07dd130 /build_files/utils
parent25550c210a7278d5e17d592b3eb0bba652c893c5 (diff)
Fix `make_utils.py` recent API breackage.
rB546314fc9669 broke `svn_libraries_base_url` utils API compatibility for no good reasons, making new `branch` argument explicitely optional. Reported on chat by Michael Kowalski (@makowalski), thanks!
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 7cd23baad68..db352ff7e16 100755
--- a/build_files/utils/make_utils.py
+++ b/build_files/utils/make_utils.py
@@ -70,7 +70,7 @@ def git_branch_release_version(branch, tag):
return release_version
-def svn_libraries_base_url(release_version, branch):
+def svn_libraries_base_url(release_version, branch=None):
if release_version:
svn_branch = "tags/blender-" + release_version + "-release"
elif branch: