diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:39:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:39:05 (GMT) |
commit | a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (patch) | |
tree | e8ac219e151be6bdf4ea4e3fbc229f247e0b7b4b /Lib/lib2to3 | |
parent | d2ad5718ad955a13cf570bacad1d7800d995da33 (diff) | |
parent | d65c9496da3485ac077fa8fd374b061afdd3605e (diff) | |
download | cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.zip cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.gz cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.bz2 |
Issue #25523: Merge a-to-an corrections from 3.4.
Diffstat (limited to 'Lib/lib2to3')
-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 d4f99a3..f3f8708 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) |