summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-11-05 20:27:17 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2002-11-05 20:27:17 (GMT)
commitcd8fdbb3fad7f81a84507d2294613016fccd0954 (patch)
tree14fbd98d738bd4b63154a7702bdf7bd188cac210 /Lib
parenta5f4c071b50b2d4b6956c73e495c87b64d404aec (diff)
downloadcpython-cd8fdbb3fad7f81a84507d2294613016fccd0954.zip
cpython-cd8fdbb3fad7f81a84507d2294613016fccd0954.tar.gz
cpython-cd8fdbb3fad7f81a84507d2294613016fccd0954.tar.bz2
Repair inconsistent use of tabs and spaces.
Diffstat (limited to 'Lib')
-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 317e21e..8898f51 100644
--- a/Lib/distutils/ccompiler.py
+++ b/Lib/distutils/ccompiler.py
@@ -589,7 +589,7 @@ class CCompiler:
"""Detect the language of a given file, or list of files. Uses
language_map, and language_order to do the job.
"""
- if type(sources) is not ListType:
+ if type(sources) is not ListType:
sources = [sources]
lang = None
index = len(self.language_order)