summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/unixccompiler.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-07-16 14:46:13 (GMT)
committerGuido van Rossum <guido@python.org>2001-07-16 14:46:13 (GMT)
commit63a47402b354e76255d4a629ee3e1950d843af25 (patch)
treeaba07ddce79f1a6d6a34ad242f0d9e12a9f76fa2 /Lib/distutils/unixccompiler.py
parentddeb1358a428cbcba6a8a682359a84fca721d604 (diff)
downloadcpython-63a47402b354e76255d4a629ee3e1950d843af25.zip
cpython-63a47402b354e76255d4a629ee3e1950d843af25.tar.gz
cpython-63a47402b354e76255d4a629ee3e1950d843af25.tar.bz2
Fix a mismatched parenthesis in the last patch.
Diffstat (limited to 'Lib/distutils/unixccompiler.py')
-rw-r--r--Lib/distutils/unixccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
index 91e7d5e..da1f2a4 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: