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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-05-05 09:56:48 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-05-05 09:56:48 +0400
commit02fd2d256ddfbe12b6800eecab9b4223ade422fc (patch)
tree214858c069d6771c09be2a6616c6c6ac30d3f617 /doc/python_api/rst/info_quickstart.rst
parent62087935ec92e24bce362489cadc944bc256e8cc (diff)
Fix #35216: code examples like simple operator missing from python docs due to
rename of directory.
Diffstat (limited to 'doc/python_api/rst/info_quickstart.rst')
-rw-r--r--doc/python_api/rst/info_quickstart.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst
index e1264ae9d52..14623515cfe 100644
--- a/doc/python_api/rst/info_quickstart.rst
+++ b/doc/python_api/rst/info_quickstart.rst
@@ -285,7 +285,7 @@ In Python, this is done by defining a class, which is a subclass of an existing
Example Operator
----------------
-.. literalinclude:: ../../../release/scripts/templates/operator_simple.py
+.. literalinclude:: ../../../release/scripts/templates_py/operator_simple.py
Once this script runs, ``SimpleOperator`` is registered with Blender and can be called from the operator search popup or added to the toolbar.
@@ -318,7 +318,7 @@ Example Panel
Panels register themselves as a class, like an operator. Notice the extra **bl_** variables used to set the context they display in.
-.. literalinclude:: ../../../release/scripts/templates/ui_panel_simple.py
+.. literalinclude:: ../../../release/scripts/templates_py/ui_panel_simple.py
To run the script: