Kaydet (Commit) 63a47402 authored tarafından Guido van Rossum's avatar Guido van Rossum

Fix a mismatched parenthesis in the last patch.

üst ddeb1358
......@@ -105,7 +105,7 @@ class UnixCCompiler (CCompiler):
# generating output to stdout, or there's a target output file and
# the source file is newer than the target (or the target doesn't
# exist).
if self.force or output_file is None or newer(source, output_file)):
if self.force or output_file is None or newer(source, output_file):
if output_file:
self.mkpath(os.path.dirname(output_file))
try:
......
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