From f48ffbc7e74602d851fb9ccebaa5c05eb3aa8c2e Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Sat, 23 Feb 2019 09:38:02 -0800 Subject: [ci skip] correct TempFileMunge docstring TEMPFILEEXTENSION in class TempFileMunge docstring should be TEMPFILESUFFIX to match the code Signed-off-by: Mats Wichmann --- src/engine/SCons/Platform/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/SCons/Platform/__init__.py b/src/engine/SCons/Platform/__init__.py index 3168378..71d292e 100644 --- a/src/engine/SCons/Platform/__init__.py +++ b/src/engine/SCons/Platform/__init__.py @@ -155,9 +155,9 @@ class TempFileMunge(object): env["TEMPFILEPREFIX"] = '' # (the empty string) PC Lint You can configure the extension of the temporary file through the - TEMPFILEEXTENSION variable, which defaults to '.lnk' (see comments + TEMPFILESUFFIX variable, which defaults to '.lnk' (see comments in the code below): - env["TEMPFILEEXTENSION"] = '.lnt' # PC Lint + env["TEMPFILESUFFIX"] = '.lnt' # PC Lint """ def __init__(self, cmd, cmdstr = None): self.cmd = cmd -- cgit v0.12