diff options
-rw-r--r-- | regex/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regex/__init__.py b/regex/__init__.py index 7232349..bf96587 100644 --- a/regex/__init__.py +++ b/regex/__init__.py @@ -79,7 +79,7 @@ def make_pattern(tree, nodes): children = [] if subpats[0]: children += [subpats[0]] - children += [tree[1]] + children += [tree[1]] if subpats[2]: children += [subpats[2]] pat = Tree(label, children) |