1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02: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]
for p in parts[3:]:
pk, pv = p.split('=', 1)
thisbuild[pk] = pv
thisbuild[pk.strip()] = pv
return thisbuild
def add_comments(key):