summaryrefslogtreecommitdiff
path: root/app/views/__init__.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-04-14 19:50:36 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-04-14 19:50:36 +0200
commitec08e8522193d01f691c925484fd011dc8fc5ee0 (patch)
treee74420f316b310cd9bf38fe2ca95650a4892df16 /app/views/__init__.py
parent17ac923320afc0851862778ad492062b14b532ca (diff)
downloadkosten-ec08e8522193d01f691c925484fd011dc8fc5ee0.tar.gz
kosten-ec08e8522193d01f691c925484fd011dc8fc5ee0.tar.bz2
kosten-ec08e8522193d01f691c925484fd011dc8fc5ee0.zip
Use unicode for interface strings
Diffstat (limited to 'app/views/__init__.py')
-rw-r--r--app/views/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/__init__.py b/app/views/__init__.py
index dc662ec..eed6d0a 100644
--- a/app/views/__init__.py
+++ b/app/views/__init__.py
@@ -18,7 +18,7 @@ def static_url(s):
@app.template_filter("eur")
def eur(s):
- return ("%s EUR" % s)
+ return (u"%s EUR" % s)
@app.errorhandler(404)
def page_not_found (error):