]> git.ipfire.org Git - thirdparty/Python/cpython.git/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 1bffcbf4fd7778a84764593c0ec99ef023f509e0..db5c47ee04dd121030c2f2dab758a129628e55cb 100755 (executable)
@@ -261,7 +261,7 @@ sed -e 's/[         ]*#.*//' -e '/^[        ]*$/d' |
        for mod in $MODS
        do
                EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL"
-               INITBITS="${INITBITS}   {\"$mod\", init$mod},$NL"
+               INITBITS="${INITBITS}    {\"$mod\", init$mod},$NL"
        done