1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-16 11:20:10 +02:00

Merge branch 'patch-1' into 'master'

metadata.py - typo

See merge request fdroid/fdroidserver!639
This commit is contained in:
Marcus 2019-04-08 16:30:32 +00:00
commit 3c74c07587

View File

@ -1119,7 +1119,7 @@ def write_yaml(mf, app):
try:
import ruamel.yaml
except ImportError as e:
raise FDroidException('ruamel.yaml not instlled, can not write metadata.') from e
raise FDroidException('ruamel.yaml not installed, can not write metadata.') from e
if not ruamel.yaml.__version__:
raise FDroidException('ruamel.yaml.__version__ not accessible. Please make sure a ruamel.yaml >= 0.13 is installed..')
m = re.match(r'(?P<major>[0-9]+)\.(?P<minor>[0-9]+)\.(?P<patch>[0-9]+)(-.+)?',