From bf95ba10437730b9f86f67e892d0d5d0ff804436 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Fri, 2 Oct 2009 13:05:03 -0400 Subject: python: Add a newline after custom classes In the generated bindings, custom classes are squashed against the following class, which hurts readability. --- generator.py | 1 + 1 file changed, 1 insertion(+) 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 -- cgit