Commit 246db906 by Adam

Merge pull request #1206 from edx/adam/unicode-error-instr-dash

small unicode fix in instr dash
parents cd7d75af c9ce25bc
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment