diff options
author | Mats Wichmann <mats@linux.com> | 2020-05-29 18:25:45 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-05-29 18:25:45 (GMT) |
commit | 5708798e8443376cb52819dc1bcae3a59ed94ea6 (patch) | |
tree | f7e96a21a4a9c6f56e1ea7fe6af24dbef41aefa8 | |
parent | 46810dae9a306c934f89ad6b3f37cc82eb2026a5 (diff) | |
download | SCons-5708798e8443376cb52819dc1bcae3a59ed94ea6.zip SCons-5708798e8443376cb52819dc1bcae3a59ed94ea6.tar.gz SCons-5708798e8443376cb52819dc1bcae3a59ed94ea6.tar.bz2 |
Fix typo in new trace_cleanup interior func
Spotted by sider
Signed-off-by: Mats Wichmann <mats@linux.com>
-rw-r--r-- | SCons/Debug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SCons/Debug.py b/SCons/Debug.py index 10cd2f5..2212eb8 100644 --- a/SCons/Debug.py +++ b/SCons/Debug.py @@ -227,7 +227,7 @@ def Trace(msg, filename=None, mode='w', tstamp=False): global TimeStampDefault global PreviousTime - def traace_cleanup(traceFP): + def trace_cleanup(traceFP): traceFP.close() if file is None: |