We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebd4b0 commit d2a2af0Copy full SHA for d2a2af0
Lib/importlib/util.py
@@ -96,7 +96,7 @@ def find_spec(name, package=None):
96
parent_path = parent.__path__
97
except AttributeError as e:
98
raise ModuleNotFoundError(
99
- f"__path__ attribute not found on {parent_name!r}"
+ f"__path__ attribute not found on {parent_name!r} "
100
f"while trying to find {fullname!r}", name=fullname) from e
101
else:
102
parent_path = None
0 commit comments