diff options
author | Mats Wichmann <mats@linux.com> | 2019-03-18 15:19:04 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2019-03-30 13:24:51 (GMT) |
commit | 573636d6e3583bed65bb864471161307c57d3b0c (patch) | |
tree | 11eaf09462962fd3d48225f971f15703a057a16b /bin/SConsDoc.py | |
parent | a1a76026505d444ad04fd3494badcdacf8e58857 (diff) | |
download | SCons-573636d6e3583bed65bb864471161307c57d3b0c.zip SCons-573636d6e3583bed65bb864471161307c57d3b0c.tar.gz SCons-573636d6e3583bed65bb864471161307c57d3b0c.tar.bz2 |
[PY 3.8] fix some sider complaints in #3331
One was "real": had failed to indent a with: block
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'bin/SConsDoc.py')
-rw-r--r-- | bin/SConsDoc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/SConsDoc.py b/bin/SConsDoc.py index 0c78525..bd9c90d 100644 --- a/bin/SConsDoc.py +++ b/bin/SConsDoc.py @@ -826,6 +826,7 @@ else: # PY3 version, from newer pydoc def importfile(path): """Import a Python source file or compiled file given its path.""" import importlib + from pydoc import ErrorDuringImport magic = importlib.util.MAGIC_NUMBER with open(path, 'rb') as file: is_bytecode = magic == file.read(len(magic)) |