Skip to content

Commit 470801a

Browse files
committed
Fixed a bug in the tz crash expression that allowed a string like 13 f tz sche to get through
1 parent db7f08a commit 470801a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/synthDrivers/ibmeci.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def unicode(s): return s
5050
re.compile(r"\b(you+)'(re)+'([drv]e?)", re.I): r"\1 \2 \3",
5151
re.compile(r"(re|un|non|anti)cosp", re.I): r"\1kosp",
5252
re.compile(r"(EUR[A-Z]+)(\d+)", re.I): r"\1 \2",
53-
re.compile(r"\b(\d+|\W+|[bcdfghjklmnpqrstvwxz]+)?t+z[s]che", re.I): r"\1tz sche",
53+
re.compile(r"\b(\d+|\W+)?([bcdfghjklmnpqrstvwxz]+)?t+z[s]che", re.I): r"\1 \2 tz sche",
5454
re.compile(r"\b(juar[aeou]s)([aeiou]{6,})", re.I): r"\1 \2"
5555
}
5656

0 commit comments

Comments
 (0)