From: Guido van Rossum Date: Mon, 16 Jul 2001 14:46:13 +0000 (+0000) Subject: Fix a mismatched parenthesis in the last patch. X-Git-Tag: v2.2a3~1141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=63a47402b354e76255d4a629ee3e1950d843af25;p=thirdparty%2FPython%2Fcpython.git Fix a mismatched parenthesis in the last patch. --- diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py index 91e7d5e03b5e..da1f2a4e8eb8 100644 --- a/Lib/distutils/unixccompiler.py +++ b/Lib/distutils/unixccompiler.py @@ -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: