Skip to content

Commit 2a4977a

Browse files
committed
Fix for parsing broken libregamewiki markup
1 parent 7a3e251 commit 2a4977a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repology/parsers/parsers/libregamewiki.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def iter_parse(self, path: str, factory: PackageFactory) -> Iterable[PackageMake
4848

4949
version = cell.text
5050

51-
if match := re.match('(.*) \\(.*\\)$', version):
51+
if match := re.match(r'(.*) \(.*', version):
5252
pkg.set_version(match.group(1))
5353
pkg.set_rawversion(version)
5454
else:

0 commit comments

Comments
 (0)