From ee8240b295c17812b53a76c03fed781e308ce0ae Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Fri, 2 Oct 2009 13:05:03 -0400 Subject: [PATCH] python: Add a newline after custom classes In the generated bindings, custom classes are squashed against the following class, which hurts readability. --- python/generator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/generator.py b/python/generator.py index 17eaf1a479..21b413772b 100755 --- a/python/generator.py +++ b/python/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 -- GitLab