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:
parent
f19531e742
commit
fba8fb839c
@ -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):
|
||||||
|
Loading…
Reference in New Issue
Block a user