diff options
author | Cole Robinson <crobinso@redhat.com> | 2009-10-02 13:05:03 -0400 |
---|---|---|
committer | Cole Robinson <crobinso@redhat.com> | 2009-10-05 13:31:38 -0400 |
commit | bf95ba10437730b9f86f67e892d0d5d0ff804436 (patch) | |
tree | fb760c44157a842a8f93ae96e18a150af9c375f4 /generator.py | |
parent | 3b8720b5d8c73a7f753543eeee89bafa890efe4a (diff) | |
download | libvirt-python-bf95ba10437730b9f86f67e892d0d5d0ff804436.tar.gz |
python: Add a newline after custom classesv0.7.2libvirt-0.7.2-3.fc13libvirt-0.7.2-2.fc13libvirt-0.7.2-1.fc13
In the generated bindings, custom classes are squashed against the following
class, which hurts readability.
Diffstat (limited to 'generator.py')
-rwxr-xr-x | generator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generator.py b/generator.py index 17eaf1a..21b4137 100755 --- a/generator.py +++ b/generator.py @@ -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 |