Add missing sysadmin dashboard unicode cast

This commit is contained in:
Carson Gee
2015-01-27 11:22:45 -05:00
parent 61e9519b53
commit 7347e3bd4a

View File

@@ -425,7 +425,7 @@ class Courses(SysadminDashboardView):
color = 'blue'
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
def import_xml_course(self, gitloc, branch):