From: Ezio Melotti Date: Tue, 10 Dec 2013 12:05:46 +0000 (+0200) Subject: #19943: fix typo noticed by Jakub Wilk. X-Git-Tag: v3.4.0b2~262^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d082b6878637bbbc81b6c4befac13872432585d1;p=python #19943: fix typo noticed by Jakub Wilk. --- diff --git a/Lib/lib2to3/fixes/fix_import.py b/Lib/lib2to3/fixes/fix_import.py index e978fce43f..734ca29469 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):