1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 18:50:11 +02:00

Correct typo

This commit is contained in:
Daniel Martí 2013-06-17 18:29:29 +02:00
parent d3ac6899ff
commit 5cdd34606e

View File

@ -532,7 +532,7 @@ def make_index(apps, apks, repodir, archive, categories):
addElement('permissions', ','.join(apk['permissions']), doc, apkel) addElement('permissions', ','.join(apk['permissions']), doc, apkel)
if len(apk['nativecode']) > 0: if len(apk['nativecode']) > 0:
addElement('nativecode', ','.join(apk['nativecode']), doc, apkel) addElement('nativecode', ','.join(apk['nativecode']), doc, apkel)
if len(apk['features') > 0: if len(apk['features']) > 0:
addElement('features', ','.join(apk['features']), doc, apkel) addElement('features', ','.join(apk['features']), doc, apkel)
of = open(os.path.join(repodir, 'index.xml'), 'wb') of = open(os.path.join(repodir, 'index.xml'), 'wb')