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:
Diffstat (limited to 'tests/python/bl_blendfile_liblink.py')
-rw-r--r--tests/python/bl_blendfile_liblink.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/python/bl_blendfile_liblink.py b/tests/python/bl_blendfile_liblink.py
index 9a6aa9c9e10..120afba4911 100644
--- a/tests/python/bl_blendfile_liblink.py
+++ b/tests/python/bl_blendfile_liblink.py
@@ -204,7 +204,12 @@ class TestBlendLibAppendBasic(TestBlendLibLinkHelper):
bpy.ops.wm.append(directory=link_dir, filename="LibMesh",
instance_object_data=False, set_fake=False, use_recursive=False, do_reuse_local_id=False)
- print(bpy.data.materials[:], bpy.data.materials[0].library, bpy.data.materials[0].users, bpy.data.materials[0].use_fake_user)
+ print(
+ bpy.data.materials[:],
+ bpy.data.materials[0].library,
+ bpy.data.materials[0].users,
+ bpy.data.materials[0].use_fake_user,
+ )
assert(len(bpy.data.materials) == 1)
assert(bpy.data.materials[0].library is not None)
@@ -400,7 +405,6 @@ class TestBlendLibLibraryReload(TestBlendLibLinkHelper):
assert(orig_data == reload_data)
-
class TestBlendLibLibraryRelocate(TestBlendLibLinkHelper):
def __init__(self, args):