diff --git a/blendfile.py b/blendfile.py index a21f9fa..33dcca3 100644 --- a/blendfile.py +++ b/blendfile.py @@ -581,8 +581,7 @@ class DNA_IO: stringw = astring[0:fieldlen] else: stringw = astring + b'\0' - print(stringw) - print(handle) + handle.write(stringw) _STRING = [struct.Struct("%ds" % i) for i in range(0, 2048)] diff --git a/packer.py b/packer.py index 60020aa..f117bf0 100644 --- a/packer.py +++ b/packer.py @@ -68,8 +68,8 @@ class FilePath: lib_id = block[b"lib"] lib = blend.find_block_from_offset(lib_id) # print(block.fields) - print(block) - print(lib) + # print(block) + # print(lib) # import IPython; IPython.embed() blend.close()