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:
authorCampbell Barton <ideasman42@gmail.com>2011-05-24 20:05:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-24 20:05:51 +0400
commit15289c60480a31a4064e7132cb208b01cabfdd1b (patch)
tree74324877b02b8a8f8d1597a0911bbe3408a621cf /doc
parent357ce169589d70b610865a76788a1f1756ff231c (diff)
use PyDoc_STRVAR macro, so its possible to build without docstrings.
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.types.BlendDataLibraries.load.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/examples/bpy.types.BlendDataLibraries.load.py b/doc/python_api/examples/bpy.types.BlendDataLibraries.load.py
index f78728cefc8..594f36e4340 100644
--- a/doc/python_api/examples/bpy.types.BlendDataLibraries.load.py
+++ b/doc/python_api/examples/bpy.types.BlendDataLibraries.load.py
@@ -34,6 +34,6 @@ with bpy.data.libraries.load(filepath) as (data_from, data_to):
with bpy.data.libraries.load(filepath) as (data_from, data_to):
data_to.meshes = data_from.meshes
# now operate directly on the loaded data
-for mesh in mdata_to.meshes:
+for mesh in data_to.meshes:
if mesh is not None:
print(mesh.name)