Skip to content
Snippets Groups Projects
Commit e965d7b7 authored by Brian Moe's avatar Brian Moe
Browse files

Fix Unicode problem in event search results.

parent bd54309b
No related branches found
No related tags found
No related merge requests found
......@@ -991,7 +991,7 @@ def flexigridResponse(request, objects):
#created_times['gps'],
created_times.get('utc',""),
"{0} {1}".format(object.submitter.first_name, object.submitter.last_name)
"%s %s" % (object.submitter.first_name, object.submitter.last_name)
]
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment