Fix for a run-time error in sphinx_doc_gen.py on Windows.
This commit is contained in:
@@ -1870,8 +1870,8 @@ def rna2sphinx(basepath):
|
|||||||
# context
|
# context
|
||||||
if "bpy.context" not in EXCLUDE_MODULES:
|
if "bpy.context" not in EXCLUDE_MODULES:
|
||||||
# one of a kind, context doc (uses ctypes to extract info!)
|
# one of a kind, context doc (uses ctypes to extract info!)
|
||||||
# doesn't work on mac
|
# doesn't work on mac and windows
|
||||||
if PLATFORM != "darwin":
|
if PLATFORM not in ["darwin", "windows"]:
|
||||||
pycontext2sphinx(basepath)
|
pycontext2sphinx(basepath)
|
||||||
|
|
||||||
# internal modules
|
# internal modules
|
||||||
|
Reference in New Issue
Block a user