#19943: fix typo noticed by Jakub Wilk.

This commit is contained in:
Ezio Melotti 2013-12-10 14:05:46 +02:00
parent b5c4fd0a96
commit d082b68786
1 changed files with 1 additions and 1 deletions

View 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):