From b9e602474aac69a31a865d91d3113fde14bef1ff Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Mon, 17 Jan 2011 09:13:55 +0000 Subject: [PATCH] Reverting to non-pretty xml, per comment on issue #19 --- update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()