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

Reverting to non-pretty xml, per comment on issue #19

This commit is contained in:
Ciaran Gultnieks 2011-01-17 09:13:55 +00:00
parent 9cba2ef574
commit b9e602474a

View File

@ -324,7 +324,7 @@ for app in apps:
apps_disabled += 1
of = open(os.path.join('repo','index.xml'), 'wb')
output = doc.toprettyxml(' ')
output = doc.toxml()
of.write(output)
of.close()