1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

Allow spaces before/after field key names

This commit is contained in:
Daniel Martí 2013-09-11 00:57:22 +02:00
parent f19531e742
commit fba8fb839c

View File

@ -451,7 +451,7 @@ def parse_metadata(metafile, **kw):
thisbuild['commit'] = parts[2] thisbuild['commit'] = parts[2]
for p in parts[3:]: for p in parts[3:]:
pk, pv = p.split('=', 1) pk, pv = p.split('=', 1)
thisbuild[pk] = pv thisbuild[pk.strip()] = pv
return thisbuild return thisbuild
def add_comments(key): def add_comments(key):