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:
authorWillian Padovani Germano <wpgermano@gmail.com>2004-04-25 18:43:21 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-04-25 18:43:21 +0400
commit2d24298b91f895f8f894591c0a7c9b857213be94 (patch)
treecbf963f6abfc02d83eab2380e53e0a029de77f7a /source/blender/python/api2_2x/doc/Library.py
parent395c1152c80d781b386125ca8da605f3893aa322 (diff)
BPython:
-- epydoc Documentation for eeshlo's Noise module + small typo fix in Noise.c -- BPY_end_python closes .blend file opened by Library module when script doesn't do it by itself.
Diffstat (limited to 'source/blender/python/api2_2x/doc/Library.py')
-rw-r--r--source/blender/python/api2_2x/doc/Library.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/doc/Library.py b/source/blender/python/api2_2x/doc/Library.py
index 5f0f754dd78..a5757b0dbef 100644
--- a/source/blender/python/api2_2x/doc/Library.py
+++ b/source/blender/python/api2_2x/doc/Library.py
@@ -25,10 +25,10 @@ Example::
groups = Library.LinkableGroups()
for db in groups:
- print "\nDATABLOCK %s:" % db
+ print "DATABLOCK %s:" % db
for obname in Library.Datablocks(db):
print obname
-
+
if 'Object' in groups:
for obname in Library.Datablocks('Object'):
Library.Load(obname, 'Object', 0) # note the 0...