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 <montagne29@wanadoo.fr>2018-12-12 13:55:40 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-12-12 13:56:25 +0300
commit047d7d3b57c0cd6ac320dbd178fa602592b10f48 (patch)
tree840f4a90d9efa4b7eec5ea8303001ad0c7c07bd9 /release
parente757c4a3bec8b0e8d198531a28327332af00a9ba (diff)
Fix T59213: Application menu links to outdated version of Python API.
Somehow those links were forgotten when we renamed API doc to simpler names last year...
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/wm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 53735ed3ece..0f3052f64c2 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -1039,9 +1039,9 @@ class WM_OT_doc_view(Operator):
doc_id = doc_id
if bpy.app.version_cycle == "release":
- _prefix = ("https://docs.blender.org/api/blender_python_api_current")
+ _prefix = ("https://docs.blender.org/api/current")
else:
- _prefix = ("https://docs.blender.org/api/blender_python_api_master")
+ _prefix = ("https://docs.blender.org/api/master")
def execute(self, context):
url = _wm_doc_get_id(self.doc_id, do_url=True, url_prefix=self._prefix)