summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-12-10 12:06:18 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-12-10 12:06:18 (GMT)
commit20719ace97d93fad7f5a03ba5eea8168fd42caff (patch)
tree182e481b578dd709c57720e80ae99dfaf07f1bb3
parent184ec79bd3d13ca4e07b8056b7de66c03c4c792f (diff)
parentd082b6878637bbbc81b6c4befac13872432585d1 (diff)
downloadcpython-20719ace97d93fad7f5a03ba5eea8168fd42caff.zip
cpython-20719ace97d93fad7f5a03ba5eea8168fd42caff.tar.gz
cpython-20719ace97d93fad7f5a03ba5eea8168fd42caff.tar.bz2
#19943: merge with 3.3.
-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):