summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-07-14 13:35:07 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2000-07-14 13:35:07 (GMT)
commit23adc9f37b981f33f1afbe08ec0fb934b3881103 (patch)
tree03ad96b293569fb6878c409003bb78eb6b17f2c6 /Lib/distutils
parent397be50a887cc79d3de7d05a415c2f0d2b0011cd (diff)
downloadcpython-23adc9f37b981f33f1afbe08ec0fb934b3881103.zip
cpython-23adc9f37b981f33f1afbe08ec0fb934b3881103.tar.gz
cpython-23adc9f37b981f33f1afbe08ec0fb934b3881103.tar.bz2
Typo fix from Bastian Kleineidam
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 6456ad4..37d19c7 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -309,7 +309,7 @@ class build_ext (Command):
def get_source_files (self):
- self.check_extension_list()
+ self.check_extensions_list(self.extensions)
filenames = []
# Wouldn't it be neat if we knew the names of header files too...