From 5e4165493aeb2a3cb51850c7bae4d6a0bca5b485 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 24 May 2017 08:00:12 -0700 Subject: [PATCH] fix typo in importlib.abc (#1323) --- stdlib/3/importlib/machinery.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/importlib/machinery.pyi b/stdlib/3/importlib/machinery.pyi index 78aaf80aa..9a9e7e647 100644 --- a/stdlib/3/importlib/machinery.pyi +++ b/stdlib/3/importlib/machinery.pyi @@ -125,7 +125,7 @@ else: def load_module(cls, fullname: str) -> types.ModuleType: ... if sys.version_info >= (3, 3): - class WindowsRegisteryFinder(importlib.abc.MetaPathFinder): + class WindowsRegistryFinder(importlib.abc.MetaPathFinder): @classmethod def find_module( cls, fullname: str,