summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3/fixes
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-12-10 12:05:46 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-12-10 12:05:46 (GMT)
commitd082b6878637bbbc81b6c4befac13872432585d1 (patch)
tree87f9ac553df677692c0ae3c0f01104a620f2a702 /Lib/lib2to3/fixes
parentb5c4fd0a964ec7d67e564e9e4a623d8b45aafa6b (diff)
downloadcpython-d082b6878637bbbc81b6c4befac13872432585d1.zip
cpython-d082b6878637bbbc81b6c4befac13872432585d1.tar.gz
cpython-d082b6878637bbbc81b6c4befac13872432585d1.tar.bz2
#19943: fix typo noticed by Jakub Wilk.
Diffstat (limited to 'Lib/lib2to3/fixes')
-rw-r--r--Lib/lib2to3/fixes/fix_import.py2
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):