mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fix a mismatched parenthesis in the last patch.
This commit is contained in:
parent
ddeb1358a4
commit
63a47402b3
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue