Typo fix.

This commit is contained in:
Greg Ward 2000-09-06 02:06:27 +00:00
parent 54589d4d97
commit 6a2035d76b
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ class build_ext (Command):
('build-temp=', 't',
"directory for temporary files (build by-products)"),
('inplace', 'i',
"ignore build-lib and put compiled extensions into the source" +
"ignore build-lib and put compiled extensions into the source " +
"directory alongside your pure Python modules"),
('include-dirs=', 'I',
"list of directories to search for header files"),

View file

@ -20,7 +20,7 @@ class build_py (Command):
user_options = [
('build-lib=', 'd', "directory to \"build\" (copy) to"),
('force', 'f', "forcibly build everything (ignore file timestamps"),
('force', 'f', "forcibly build everything (ignore file timestamps)"),
]