Skip to content

Commit

Permalink
Sukija indexer: a bug fix in Python regular expression.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannu Väisänen authored and Hannu Väisänen committed Oct 7, 2024
1 parent 6228366 commit eb17650
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions voikko-fi/vvfst/generate_sukija.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

# Copyright 2013-2018, 2020 Hannu Väisänen
# Copyright 2013-2018, 2020, 2024 Hannu Väisänen

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -178,7 +178,7 @@ def ga (line, x):

re_Xiljoona = re.compile (u"\\A(?:\\[Bc\\]|\\[Sn\\]|@).*(b|m|tr)iljoon", re.UNICODE)

re_isoida_x = re.compile (u"\\A\[Lt\]\[Xp\](dramatisoida|karakterisoida)\[X\]")
re_isoida_x = re.compile (u"\\A\\[Lt\\]\\[Xp\\](dramatisoida|karakterisoida)\\[X\\]")

re_A = re.compile (u"[aou]")

Expand Down

0 comments on commit eb17650

Please sign in to comment.