mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Fix UCM:Market version name matching
This commit is contained in:
parent
94e6e416a6
commit
9f192ae920
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ def check_market(app):
|
||||||
version = None
|
version = None
|
||||||
vercode = None
|
vercode = None
|
||||||
|
|
||||||
m = re.search('<dd itemprop="softwareVersion">([^>]+)</dd>', page)
|
m = re.search('itemprop="softwareVersion">[ ]*([^<]+)[ ]*</div>', page)
|
||||||
if m:
|
if m:
|
||||||
html_parser = HTMLParser.HTMLParser()
|
html_parser = HTMLParser.HTMLParser()
|
||||||
version = html_parser.unescape(m.group(1))
|
version = html_parser.unescape(m.group(1))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue