]> 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 201e811e619a6d90ec3cbec594cf219c5d35153d..88e9d10334f694df7182b19c3ce9995dca48e0e4 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):