1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 14:42:10 +00:00

Fix ace view

This commit is contained in:
plt
2012-08-02 21:49:33 +08:00
committed by llj
parent 1ae7cd953c
commit b0e31a4993
2 changed files with 6 additions and 3 deletions

View File

@@ -896,7 +896,7 @@ def repo_file_get(request, repo_id):
from django.utils.html import escape
# d['content'] = escape(u_content)
# l.append(d)
data = json.dumps({'content': escape(u_content)})
data = json.dumps({'content': u_content})
return HttpResponse(data, status=200, content_type=content_type)