Attribute Error: module 'markdown' has no attribute 'Markdown' #8372
Unanswered
mq810
asked this question in
Potential Issue
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Do the following change on line 87 in
rest_framework/compat.py
somehow magically solved this issue.from
markdown.Markdown
change tomarkdown.markdown
code:
md = markdown.markdown( extensions=extensions, extension_configs=extension_configs )
Beta Was this translation helpful? Give feedback.
All reactions