aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2008-11-28 23:30:45 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2008-11-28 23:30:45 +0000
commitd26772917b5c752b2f92ab066ce807d8f40dc3ce (patch)
treeb0d105a7c3ee5b32a0449e7b37e3f834e890a5a6
parent946f9def37be4bb23c89b4e7763f6957adfd2c66 (diff)
downloadswig-d26772917b5c752b2f92ab066ce807d8f40dc3ce.tar.gz
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
-rw-r--r--Source/Modules/python.cxx2
1 files changed, 1 insertions, 1 deletions
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;
}