]> granicus.if.org Git - python/commitdiff
generate spaces instead of tabs into config.c
authorBenjamin Peterson <benjamin@python.org>
Mon, 16 Jan 2017 08:05:12 +0000 (00:05 -0800)
committerBenjamin Peterson <benjamin@python.org>
Mon, 16 Jan 2017 08:05:12 +0000 (00:05 -0800)
Modules/makesetup

index e204a0595cd7adffd30fb62b5279f1b2e6062b69..8db8de80adcc8d0e31839b8c410f292b1435f8ac 100755 (executable)
@@ -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