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
path: root/doc
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2017-01-02 03:42:37 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2017-01-02 03:53:16 +0300
commit911544c70cb0da53cb1df526e4c2cfa9f32a14be (patch)
tree4cfeb092a1640d72014fcfc3d51486ebd512bf5a /doc
parent7924c84c44c70fefa64a872d6d767913fba636d2 (diff)
API: Fix double slashes in URLs
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 432cceece1c..f0b5c6d832c 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1565,9 +1565,9 @@ def pyrna2sphinx(basepath):
# operators
def write_ops():
- API_BASEURL = "https://developer.blender.org/diffusion/B/browse/master/release/scripts/ "
- API_BASEURL_ADDON = "https://developer.blender.org/diffusion/BA/"
- API_BASEURL_ADDON_CONTRIB = "https://developer.blender.org/diffusion/BAC/"
+ API_BASEURL = "https://developer.blender.org/diffusion/B/browse/master/release/scripts "
+ API_BASEURL_ADDON = "https://developer.blender.org/diffusion/BA"
+ API_BASEURL_ADDON_CONTRIB = "https://developer.blender.org/diffusion/BAC"
op_modules = {}
for op in ops.values():