From 89c19fd094031a05932076ad01d7cdc25ecf3758 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 10 Dec 2013 14:05:46 +0200 Subject: [PATCH] #19943: fix typo noticed by Jakub Wilk. --- Lib/lib2to3/fixes/fix_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/lib2to3/fixes/fix_import.py b/Lib/lib2to3/fixes/fix_import.py index 201e811e61..88e9d10334 100644 --- a/Lib/lib2to3/fixes/fix_import.py +++ b/Lib/lib2to3/fixes/fix_import.py @@ -32,7 +32,7 @@ def traverse_imports(names): elif node.type == syms.dotted_as_names: pending.extend(node.children[::-2]) else: - raise AssertionError("unkown node type") + raise AssertionError("unknown node type") class FixImport(fixer_base.BaseFix): -- 2.50.1