Commit 95437400 authored by Greg Ward's avatar Greg Ward

Typo fix from David Ascher.

parent 589cd113
...@@ -292,7 +292,7 @@ class build_ext (Command): ...@@ -292,7 +292,7 @@ class build_ext (Command):
ext.undef_macros = [] ext.undef_macros = []
for macro in macros: for macro in macros:
if not (type(macro) is TupleType and if not (type(macro) is TupleType and
1 <= len(macros) <= 2): 1 <= len(macro) <= 2):
raise DistutilsSetupError, \ raise DistutilsSetupError, \
("'macros' element of build info dict " ("'macros' element of build info dict "
"must be 1- or 2-tuple") "must be 1- or 2-tuple")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment