Typo fix from David Ascher.

This commit is contained in:
Greg Ward 2000-07-27 01:21:54 +00:00
parent 8353f623d6
commit 53c1bc3f9b
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ class build_ext (Command):
ext.undef_macros = []
for macro in macros:
if not (type(macro) is TupleType and
1 <= len(macros) <= 2):
1 <= len(macro) <= 2):
raise DistutilsSetupError, \
("'macros' element of build info dict "
"must be 1- or 2-tuple")