diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 50319c3c..d977084b 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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):