commit | d082b6878637bbbc81b6c4befac13872432585d1 | [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 | 87f9ac553df677692c0ae3c0f01104a620f2a702 | |
parent | b5c4fd0a964ec7d67e564e9e4a623d8b45aafa6b [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 e978fce..734ca29 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):