diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 14:10:23 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 14:10:23 +0200 |
commit | aaa148d904d97f1445abba993682ba543620454e (patch) | |
tree | 6d64003c8affbab498000c8bfe4b100e1561c13d /Lib/lib2to3/fixes | |
parent | 83fc8c09e3c0a071b0f0900b1cb7a1755638741a (diff) | |
download | cpython-aaa148d904d97f1445abba993682ba543620454e.tar.gz |
Issue #25523: Further a-to-an corrections.
Diffstat (limited to 'Lib/lib2to3/fixes')
-rw-r--r-- | Lib/lib2to3/fixes/fix_metaclass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py index d4f99a38c7..f3f8708570 100644 --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -114,7 +114,7 @@ def find_metas(cls_node): left_node = expr_node.children[0] if isinstance(left_node, Leaf) and \ left_node.value == '__metaclass__': - # We found a assignment to __metaclass__. + # We found an assignment to __metaclass__. fixup_simple_stmt(node, i, simple_node) remove_trailing_newline(simple_node) yield (node, i, simple_node) |