Mercurial > public > sg101
changeset 840:7735f8a6bd1f
Bandmap fix: Unicode band names were causing a crash.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 04 Oct 2014 17:15:22 -0500 |
parents | 36d988b800c2 |
children | 47521d9e94bd |
files | bandmap/views.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/bandmap/views.py Sat Oct 04 17:06:56 2014 -0500 +++ b/bandmap/views.py Sat Oct 04 17:15:22 2014 -0500 @@ -15,7 +15,7 @@ from bandmap.models import BandEntry -SUCCESS = "Successfully submitted {} for admin review. Thanks!" +SUCCESS = u"Successfully submitted {} for admin review. Thanks!" def map_view(request):