]> granicus.if.org Git - python/commitdiff
#19943: fix typo noticed by Jakub Wilk.
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 10 Dec 2013 12:05:46 +0000 (14:05 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 10 Dec 2013 12:05:46 +0000 (14:05 +0200)
Lib/lib2to3/fixes/fix_import.py

index e978fce43fcce1e9ec907ee7e85e4148db7a72b1..734ca294699c36400b2c1d59c1badfb9c296ec14 100644 (file)
@@ -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):