aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/lib2to3/btm_matcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lib2to3/btm_matcher.py')
-rw-r--r--Lib/lib2to3/btm_matcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/btm_matcher.py b/Lib/lib2to3/btm_matcher.py
index 736ba2b9d83..eabe1a71a65 100644
--- a/Lib/lib2to3/btm_matcher.py
+++ b/Lib/lib2to3/btm_matcher.py
@@ -104,7 +104,7 @@ class BottomMatcher(object):
current_ast_node.was_checked = True
for child in current_ast_node.children:
# multiple statements, recheck
- if isinstance(child, pytree.Leaf) and child.value == u";":
+ if isinstance(child, pytree.Leaf) and child.value == ";":
current_ast_node.was_checked = False
break
if current_ast_node.type == 1: