diff options
| author | Guido van Rossum <guido@python.org> | 2001-07-16 14:46:13 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2001-07-16 14:46:13 +0000 |
| commit | 4490899b03853d52c7f718b6a2c5a54a2e865829 (patch) | |
| tree | 5009f01f724950ff331b8ab917d094fb9d1699ab /unixccompiler.py | |
| parent | 78fe57542d08d417655af49304c2b266b993a2ff (diff) | |
| download | python-setuptools-git-4490899b03853d52c7f718b6a2c5a54a2e865829.tar.gz | |
Fix a mismatched parenthesis in the last patch.
Diffstat (limited to 'unixccompiler.py')
| -rw-r--r-- | unixccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unixccompiler.py b/unixccompiler.py index 91e7d5e0..da1f2a4e 100644 --- a/unixccompiler.py +++ b/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: |
