chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f19531e
)
Allow spaces before/after field key names
author
Daniel Martí
<mvdan@mvdan.cc>
Tue, 10 Sep 2013 22:57:22 +0000
(
00:57
+0200)
committer
Daniel Martí
<mvdan@mvdan.cc>
Tue, 10 Sep 2013 23:07:51 +0000
(
01:07
+0200)
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index 50319c3c1284bfe9e61789a46b2f655237978b90..d977084be397581fcfd4c22907bcb28de9fa832f 100644
(file)
--- 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):