diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-12-10 12:05:46 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-12-10 12:05:46 (GMT) |
commit | d082b6878637bbbc81b6c4befac13872432585d1 (patch) | |
tree | 87f9ac553df677692c0ae3c0f01104a620f2a702 /Lib | |
parent | b5c4fd0a964ec7d67e564e9e4a623d8b45aafa6b (diff) | |
download | cpython-d082b6878637bbbc81b6c4befac13872432585d1.zip cpython-d082b6878637bbbc81b6c4befac13872432585d1.tar.gz cpython-d082b6878637bbbc81b6c4befac13872432585d1.tar.bz2 |
#19943: fix typo noticed by Jakub Wilk.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib2to3/fixes/fix_import.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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): |