From e1b4931ec4ed3f839ce8ea9d7ada2091e830c6b2 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Mon, 4 Jun 2018 00:44:12 -0600 Subject: [PATCH] bpo-30436: Add missing space in importlib.util.find_spec() error message --- Lib/importlib/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/importlib/util.py b/Lib/importlib/util.py index 9d0a90d29730fd..201e0f4cb89d18 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