From: Ciaran Gultnieks Date: Mon, 17 Jan 2011 09:13:55 +0000 (+0000) Subject: Reverting to non-pretty xml, per comment on issue #19 X-Git-Tag: 0.1~1534 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b9e602474aac69a31a865d91d3113fde14bef1ff;p=fdroidserver.git Reverting to non-pretty xml, per comment on issue #19 --- diff --git a/update.py b/update.py index d59d1b76..8b0c3e9b 100644 --- a/update.py +++ b/update.py @@ -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()