Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2017-01-24 03:23:20 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2017-01-24 03:23:20 +0300
commit0a9f786d72cd10e145d5bcff541a44acbb5869c2 (patch)
tree22e750e122f0c0106d713059084b9ef8c9eb6535 /modules
parentdf36a4195487459ad14339411d284c5bb6269491 (diff)
Use new manual URL
Diffstat (limited to 'modules')
-rw-r--r--modules/rna_manual_reference.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/rna_manual_reference.py b/modules/rna_manual_reference.py
index 4b4601f6..63bf108c 100644
--- a/modules/rna_manual_reference.py
+++ b/modules/rna_manual_reference.py
@@ -22,7 +22,7 @@
import bpy
-url_manual_prefix = "https://www.blender.org/manual/"
+url_manual_prefix = "https://docs.blender.org/manual/en/dev/"
language = ""
if bpy.context.user_preferences.system.use_international_fonts:
@@ -58,7 +58,7 @@ LANG = {
}.get(language)
if LANG is not None:
- url_manual_prefix = url_manual_prefix.replace("manual", "manual/" + LANG)
+ url_manual_prefix = url_manual_prefix.replace("manual/en", "manual/" + LANG)
# - The first item is a wildcard - typical file system globbing
# using python module 'fnmatch.fnmatch'