Allow spaces in XML replies.
[pithos] / pithos / api / templates / accounts.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <accounts>
4   {% for account in accounts %}
5   <account>
6   {% for key, value in account.items %}
7     <{{ key }}>{{ value }}</{{ key }}>
8   {% endfor %}
9   </account>
10   {% endfor %}
11 </accounts>