diff options
author | Ivan Kravets <me@ikravets.com> | 2021-04-12 18:58:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 18:58:25 (GMT) |
commit | 6b26590e963eceef956030d7047ee76ac6eec6dd (patch) | |
tree | 2742b2dad4e57cb663dbb43d32f0d230cd2275cc /SCons | |
parent | f9574a6963743e5ca07dd150830485601dd39dbb (diff) | |
download | SCons-6b26590e963eceef956030d7047ee76ac6eec6dd.zip SCons-6b26590e963eceef956030d7047ee76ac6eec6dd.tar.gz SCons-6b26590e963eceef956030d7047ee76ac6eec6dd.tar.bz2 |
Fix a missed bracket
Diffstat (limited to 'SCons')
-rw-r--r-- | SCons/Platform/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/Platform/__init__.py b/SCons/Platform/__init__.py index ed8532b..549030a 100644 --- a/SCons/Platform/__init__.py +++ b/SCons/Platform/__init__.py @@ -261,12 +261,12 @@ class TempFileMunge: if not prefix: prefix = '@' - tempfile_esc_func = env.get('TEMPFILEARGESCFUNC', SCons.Subst.quote_spaces + tempfile_esc_func = env.get('TEMPFILEARGESCFUNC', SCons.Subst.quote_spaces) args = [ tempfile_esc_func(arg) for arg in cmd[1:] ] - join_char = env.get('TEMPFILEARGJOIN',' ') + join_char = env.get('TEMPFILEARGJOIN', ' ') os.write(fd, bytearray(join_char.join(args) + "\n", 'utf-8')) os.close(fd) |