small unicode fix in instr dash

This commit is contained in:
Adam Palay
2013-10-02 16:24:13 -04:00
parent a3525875fd
commit c9ce25bcb2

View File

@@ -1017,7 +1017,7 @@ def _add_or_remove_user_group(request, username_or_email, group, group_title, ev
else:
user = User.objects.get(username=username_or_email)
except User.DoesNotExist:
msg = '<font color="red">Error: unknown username or email "{0}"</font>'.format(username_or_email)
msg = u'<font color="red">Error: unknown username or email "{0}"</font>'.format(username_or_email)
user = None
if user is not None: