summaryrefslogtreecommitdiff
path: root/Lib/distutils/unixccompiler.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-07-16 14:46:13 +0000
committerGuido van Rossum <guido@python.org>2001-07-16 14:46:13 +0000
commit1b10f16a000f691fda3cdf9e0f479477c03bac0b (patch)
tree92a0ad7d936d3e4c7ffeed575ed49d9885eae506 /Lib/distutils/unixccompiler.py
parent5eff7022741f35acf85e407d44f686b63855aa1b (diff)
downloadcpython-1b10f16a000f691fda3cdf9e0f479477c03bac0b.tar.gz
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 91e7d5e03b..da1f2a4e8e 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: