aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/compat.py
diff options
context:
space:
mode:
authorTom Christie2012-11-09 08:23:05 -0800
committerTom Christie2012-11-09 08:23:05 -0800
commitb1b284cdbc7732b8825565cf70f8cc56f56971fc (patch)
tree04a74b02c53c7b5def46831b1b2be45d5f15db6c /rest_framework/compat.py
parent9aaeeacdfebc244850e82469e4af45af252cca4d (diff)
parent61ec6c09120f31dac60b5fe9f7f42bd22c880cb8 (diff)
downloaddjango-rest-framework-b1b284cdbc7732b8825565cf70f8cc56f56971fc.tar.bz2
Merge pull request #393 from glic3rinu/master
Fixed typo on safe_mode markdown wrapper
Diffstat (limited to 'rest_framework/compat.py')
-rw-r--r--rest_framework/compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/compat.py b/rest_framework/compat.py
index 02e50604..5055bfd3 100644
--- a/rest_framework/compat.py
+++ b/rest_framework/compat.py
@@ -340,7 +340,7 @@ try:
"""
extensions = ['headerid(level=2)']
- safe_mode = False,
+ safe_mode = False
md = markdown.Markdown(extensions=extensions, safe_mode=safe_mode)
return md.convert(text)