Commit 7347e3bd by Carson Gee

Add missing sysadmin dashboard unicode cast

parent 61e9519b
...@@ -425,7 +425,7 @@ class Courses(SysadminDashboardView): ...@@ -425,7 +425,7 @@ class Courses(SysadminDashboardView):
color = 'blue' color = 'blue'
msg = u"<h4 style='color:{0}'>{1}</h4>".format(color, msg_header) msg = u"<h4 style='color:{0}'>{1}</h4>".format(color, msg_header)
msg += "<pre>{0}</pre>".format(escape(ret)) msg += u"<pre>{0}</pre>".format(escape(ret))
return msg return msg
def import_xml_course(self, gitloc, branch): def import_xml_course(self, gitloc, branch):
......
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