From 0d936e133c9cdba77eeeb768b41c505336b7cd3b Mon Sep 17 00:00:00 2001 From: mandeep Date: Fri, 24 Mar 2017 16:46:35 -0500 Subject: [PATCH] Fixed grammar error on line 140 --- Lib/importlib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/importlib/__init__.py b/Lib/importlib/__init__.py index f87e20e4045dc30..86febffb6d25f14 100644 --- a/Lib/importlib/__init__.py +++ b/Lib/importlib/__init__.py @@ -137,7 +137,7 @@ def reload(module): """ if not module or not isinstance(module, types.ModuleType): - raise TypeError("reload() argument must be module") + raise TypeError("reload() argument must be a module") try: name = module.__spec__.name except AttributeError: