From: Greg Ward Date: Thu, 27 Jul 2000 01:21:54 +0000 (+0000) Subject: Typo fix from David Ascher. X-Git-Tag: v2.0b1~709 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53c1bc3f9bf4d83f01e5dc8c228379ae525a2cbb;p=python Typo fix from David Ascher. --- diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 37d19c7db4..2ede447fed 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -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")