[Bf-blender-cvs] [911544c] master: API: Fix double slashes in URLs

Aaron Carlisle noreply at git.blender.org
Mon Jan 2 01:54:06 CET 2017


Commit: 911544c70cb0da53cb1df526e4c2cfa9f32a14be
Author: Aaron Carlisle
Date:   Sun Jan 1 19:42:37 2017 -0500
Branches: master
https://developer.blender.org/rB911544c70cb0da53cb1df526e4c2cfa9f32a14be

API: Fix double slashes in URLs

===================================================================

M	doc/python_api/sphinx_doc_gen.py

===================================================================

diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 432ccee..f0b5c6d 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():




More information about the Bf-blender-cvs mailing list