Skip to content
Snippets Groups Projects
Commit bfe3db81 authored by Simon Will's avatar Simon Will
Browse files

Fix bug in blow_up_accented

parent a29906d7
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,7 @@ def blow_up_accented(accented):
blueprint = [accented[:matches[0].start()]]
for m in matches:
blueprint.append('{}')
blueprint.append(accented[matches[-1].end():])
blueprint = ''.join(blueprint)
# Fill blueprint with variants of accented form.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment