summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/ccompiler.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-07-07 20:45:21 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2000-07-07 20:45:21 (GMT)
commit65d6edb478d8c649766c59c5ae186bf0d1e812e6 (patch)
tree57abda04efa17d981ec8ea679a725af5a1e057c9 /Lib/distutils/ccompiler.py
parentbc30b117643a3bffb39ba3e93bba1beb493d1f37 (diff)
downloadcpython-65d6edb478d8c649766c59c5ae186bf0d1e812e6.zip
cpython-65d6edb478d8c649766c59c5ae186bf0d1e812e6.tar.gz
cpython-65d6edb478d8c649766c59c5ae186bf0d1e812e6.tar.bz2
fix inconsistent use of tabs and spaces
Diffstat (limited to 'Lib/distutils/ccompiler.py')
-rw-r--r--Lib/distutils/ccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py
index 20a5191..933060a 100644
--- a/Lib/distutils/ccompiler.py
+++ b/Lib/distutils/ccompiler.py
@@ -828,7 +828,7 @@ def show_compilers():
from distutils.fancy_getopt import FancyGetopt
compilers = []
for compiler in compiler_class.keys():
- compilers.append(("compiler="+compiler, None,
+ compilers.append(("compiler="+compiler, None,
compiler_class[compiler][2]))
compilers.sort()
pretty_printer = FancyGetopt(compilers)