summaryrefslogtreecommitdiff
path: root/test/Configure
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2019-12-22 08:44:29 -0700
committerMats Wichmann <mats@linux.com>2019-12-23 09:52:35 -0700
commita5359e3f10a6bcdb5d9667c95c40ddd890b551e8 (patch)
treedd587ca78a6d4542c6bd968e4590b6671464d39d /test/Configure
parent5a864bae1380155997f4041d607e4abcf74652ca (diff)
downloadscons-git-a5359e3f10a6bcdb5d9667c95c40ddd890b551e8.tar.gz
syntax fixups suggested by PyCharm
Drop unneeded parens. Drop trailing semicolons. Triple double-quote docstrings. Regexes drop unneeded escapes. Spaces around parens, braces: remove/add. Some one-tuples get their missing closing comma. A couple of sets use set init syntax {foo} instead of set([iter]) now. And a fiddle in Node to reduce lookup time on md5 signature functions (came about because of a line-too-long issue, initially) Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Configure')
-rw-r--r--test/Configure/ConfigureDryRunError.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Configure/ConfigureDryRunError.py b/test/Configure/ConfigureDryRunError.py
index 2a8e449f0..1b89b03aa 100644
--- a/test/Configure/ConfigureDryRunError.py
+++ b/test/Configure/ConfigureDryRunError.py
@@ -56,7 +56,7 @@ r2 = conf.CheckLib('hopefullynolib') # will fail
env = conf.Finish()
if not (r1 and not r2):
Exit(1)
-""" % (lib))
+""" % lib)
expect = """
scons: *** Cannot create configure directory ".sconf_temp" within a dry-run.