diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-12-10 12:06:18 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-12-10 12:06:18 (GMT) |
commit | 20719ace97d93fad7f5a03ba5eea8168fd42caff (patch) | |
tree | 182e481b578dd709c57720e80ae99dfaf07f1bb3 /Lib/lib2to3 | |
parent | 184ec79bd3d13ca4e07b8056b7de66c03c4c792f (diff) | |
parent | d082b6878637bbbc81b6c4befac13872432585d1 (diff) | |
download | cpython-20719ace97d93fad7f5a03ba5eea8168fd42caff.zip cpython-20719ace97d93fad7f5a03ba5eea8168fd42caff.tar.gz cpython-20719ace97d93fad7f5a03ba5eea8168fd42caff.tar.bz2 |
#19943: merge with 3.3.
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 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): |