]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a mismatched parenthesis in the last patch.
authorGuido van Rossum <guido@python.org>
Mon, 16 Jul 2001 14:46:13 +0000 (14:46 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 16 Jul 2001 14:46:13 +0000 (14:46 +0000)
Lib/distutils/unixccompiler.py

index 91e7d5e03b5e12f87930d2805eabb42ec753a398..da1f2a4e8eb8920a5281a54845e421ef4f18ffb7 100644 (file)
@@ -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: