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 | 89c19fd094031a05932076ad01d7cdc25ecf3758 (patch) | |
tree | f01dea7c13a0c0fd8d7e554724925868be456ecb /Lib/lib2to3 | |
parent | 73188fb68b292b87754ae8fd71b629dd7f17197c (diff) | |
download | cpython-89c19fd094031a05932076ad01d7cdc25ecf3758.zip cpython-89c19fd094031a05932076ad01d7cdc25ecf3758.tar.gz cpython-89c19fd094031a05932076ad01d7cdc25ecf3758.tar.bz2 |
#19943: fix typo noticed by Jakub Wilk.
Diffstat (limited to 'Lib/lib2to3')
-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 201e811..88e9d10 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): |