commit | 89c19fd094031a05932076ad01d7cdc25ecf3758 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Tue Dec 10 14:05:46 2013 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Tue Dec 10 14:05:46 2013 +0200 |
tree | f01dea7c13a0c0fd8d7e554724925868be456ecb | |
parent | 73188fb68b292b87754ae8fd71b629dd7f17197c [diff] |
#19943: fix typo noticed by Jakub Wilk.
diff --git a/Lib/lib2to3/fixes/fix_import.py b/Lib/lib2to3/fixes/fix_import.py index 201e811..88e9d10 100644 --- a/Lib/lib2to3/fixes/fix_import.py +++ b/Lib/lib2to3/fixes/fix_import.py
@@ -32,7 +32,7 @@ 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):