diff options
Diffstat (limited to 'Lib/importlib/util.py')
-rw-r--r-- | Lib/importlib/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/util.py b/Lib/importlib/util.py index 9d0a90d..201e0f4 100644 --- a/Lib/importlib/util.py +++ b/Lib/importlib/util.py @@ -96,7 +96,7 @@ def find_spec(name, package=None): parent_path = parent.__path__ except AttributeError as e: raise ModuleNotFoundError( - f"__path__ attribute not found on {parent_name!r}" + f"__path__ attribute not found on {parent_name!r} " f"while trying to find {fullname!r}", name=fullname) from e else: parent_path = None |