From: Benjamin Peterson Date: Mon, 16 Jan 2017 08:05:12 +0000 (-0800) Subject: generate spaces instead of tabs into config.c X-Git-Tag: v3.6.1rc1~167^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a105dd3dc0b054f0d7977e19b682a0016b67790f;p=thirdparty%2FPython%2Fcpython.git generate spaces instead of tabs into config.c --- diff --git a/Modules/makesetup b/Modules/makesetup index e204a0595cd7..8db8de80adcc 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -259,7 +259,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | for mod in $MODS do EXTDECLS="${EXTDECLS}extern PyObject* PyInit_$mod(void);$NL" - INITBITS="${INITBITS} {\"$mod\", PyInit_$mod},$NL" + INITBITS="${INITBITS} {\"$mod\", PyInit_$mod},$NL" done