diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-11-17 15:48:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-17 15:48:08 (GMT) |
commit | f7098410c3bba1feaba98ce9ab6d1884d48e8c01 (patch) | |
tree | a79580e9379615bab3619d0f15136e6d3950bc48 | |
parent | ad0bbd693fde6157323ab461a5e637f237fb59e1 (diff) | |
parent | d2e7ec3dcc8d0c2c401eefc9c36d91a19c9bbb2b (diff) | |
download | SCons-f7098410c3bba1feaba98ce9ab6d1884d48e8c01.zip SCons-f7098410c3bba1feaba98ce9ab6d1884d48e8c01.tar.gz SCons-f7098410c3bba1feaba98ce9ab6d1884d48e8c01.tar.bz2 |
Merge pull request #3476 from timgates42/bugfix/typo_whose
Fix simple typo: whos -> whose
-rwxr-xr-x | src/CHANGES.txt | 2 | ||||
-rw-r--r-- | src/engine/SCons/Tool/__init__.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 617b3d0..be0c6b8 100755 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -42,6 +42,8 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER From Edoardo Bezzeccheri - Added debug option "action_timestamps" which outputs to stdout the absolute start and end time for each target. + From Tim Gates + - Resolved a typo in engine.SCons.Tool RELEASE 3.1.1 - Mon, 07 Aug 2019 20:09:12 -0500 diff --git a/src/engine/SCons/Tool/__init__.py b/src/engine/SCons/Tool/__init__.py index c8fb389..f255b21 100644 --- a/src/engine/SCons/Tool/__init__.py +++ b/src/engine/SCons/Tool/__init__.py @@ -99,7 +99,7 @@ for suffix in LaTeXSuffixes: SourceFileScanner.add_scanner(suffix, LaTeXScanner) SourceFileScanner.add_scanner(suffix, PDFLaTeXScanner) -# Tool aliases are needed for those tools whos module names also +# Tool aliases are needed for those tools whose module names also # occur in the python standard library. This causes module shadowing and # can break using python library functions under python3 TOOL_ALIASES = { |