KiCad / kicad-library-utils

Some scripts for helping with library development
GNU General Public License v3.0
128 stars 95 forks source link

schlib.py - With each save a new #End Library is appended #314

Open rs-development opened 4 years ago

rs-development commented 4 years ago

As in the title with each save of a library a # #End Library is added to the file.

I tested with the official Device.lib:

lib = schlib.SchLib('/home/git/kicad-symbol-templates-library/Device.lib')
lib_new = lib
lib_new.filename = '/home/git/kicad-symbol-templates-library/Device_new.lib'
lib_new.save()

Maybe someone has in idea or is using the script?