1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2024-10-26 07:55:06 +03:00

python: Add a newline after custom classes

In the generated bindings, custom classes are squashed against the following
class, which hurts readability.
This commit is contained in:
Cole Robinson 2009-10-02 13:05:03 -04:00
parent 3b8720b5d8
commit bf95ba1043

View File

@ -1337,6 +1337,7 @@ def buildWrappers():
classes.write (" # %s methods from %s.py (hand coded)\n" % (classname,classname))
classes.write (" #\n")
classes.writelines(extra.readlines())
classes.write("\n")
extra.close()
except:
pass