From 70d3d1aca6612d8168d80ca72938dad06086003b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Mar 2012 21:39:56 +0000 Subject: style cleanup: py/capi --- source/blender/python/simple_enum_gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/python/simple_enum_gen.py') diff --git a/source/blender/python/simple_enum_gen.py b/source/blender/python/simple_enum_gen.py index ec2eead522c..7e54f3dbb41 100644 --- a/source/blender/python/simple_enum_gen.py +++ b/source/blender/python/simple_enum_gen.py @@ -40,7 +40,7 @@ defs = """ """ print '\tmod = PyModule_New("dummy");' -print '\tPyModule_AddObject( submodule, "key", mod );' +print '\tPyModule_AddObject(submodule, "key", mod);' for d in defs.split('\n'): @@ -58,7 +58,7 @@ for d in defs.split('\n'): val = w[0] py_val = w[0] - print '\tPyModule_AddObject( mod, "%s", PyLong_FromSize_t(%s) );' % (val, py_val) + print '\tPyModule_AddObject(mod, "%s", PyLong_FromSize_t(%s));' % (val, py_val) -- cgit v1.2.3