From 53b7659ebf81abd525cef5560aea658589d6273d Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Tue, 16 Jun 2015 08:11:29 +0100 Subject: [PATCH] Fix Python pep8 warning when using -fastinit (or -O) Fixes: E231 missing whitespace after ',' --- 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 378a276af..50cf1a4c2 100644 --- a/Source/Modules/python.cxx +++ b/Source/Modules/python.cxx @@ -4658,7 +4658,7 @@ public: Printv(f_shadow, pythoncode(pythonprepend(n), tab8), "\n", NIL); Printv(f_shadow, pass_self, NIL); if (fastinit) { - Printv(f_shadow, tab8, module, ".", class_name, "_swiginit(self,", funcCall(Swig_name_construct(NSPACE_TODO, symname), callParms), ")\n", NIL); + Printv(f_shadow, tab8, module, ".", class_name, "_swiginit(self, ", funcCall(Swig_name_construct(NSPACE_TODO, symname), callParms), ")\n", NIL); } else { Printv(f_shadow, tab8, "this = ", funcCall(Swig_name_construct(NSPACE_TODO, symname), callParms), "\n",