aboutsummaryrefslogtreecommitdiffstats
path: root/access/fetch.py
diff options
context:
space:
mode:
Diffstat (limited to 'access/fetch.py')
-rw-r--r--access/fetch.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/access/fetch.py b/access/fetch.py
index 2ab65ed..d36c25b 100644
--- a/access/fetch.py
+++ b/access/fetch.py
@@ -100,7 +100,6 @@ class FetchEvent(webapp2.RequestHandler):
self.response.headers['Content-Type'] = 'text/xml; charset=UTF-8'
self.response.out.write(
- etree.tostring(eventroot, pretty_print=True, xml_declaration=True,
- encoding='UTF-8'))
+ etree.tostring(eventroot, xml_declaration=True, encoding='UTF-8'))
app = webapp2.WSGIApplication([('/access/fetch', FetchEvent)])