From d26772917b5c752b2f92ab066ce807d8f40dc3ce Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 28 Nov 2008 23:30:45 +0000 Subject: [PATCH] minor fix to formatting in generated types table git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10956 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/python.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/python.cxx b/Source/Modules/python.cxx index 870c6f35e..5b20f88a1 100644 --- a/Source/Modules/python.cxx +++ b/Source/Modules/python.cxx @@ -890,7 +890,7 @@ public: int add_pyinstancemethod_new() { String* name = NewString("SWIG_PyInstanceMethod_New"); - Printf(methods, "\t { (char *)\"%s\", (PyCFunction)%s, METH_O, NULL},", name, name); + Printf(methods, "\t { (char *)\"%s\", (PyCFunction)%s, METH_O, NULL},\n", name, name); Delete(name); return 0; }