From 734959fb0729e2ad0c45a0dbdb38dee4ca42e5fa Mon Sep 17 00:00:00 2001
From: Pouria Hadjibagheri
Date: Sun, 12 Mar 2017 23:32:34 +0000
Subject: [PATCH] Replace weired quote characters so Python 2 will understand.
---
markdownx/models.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/markdownx/models.py b/markdownx/models.py
index a293e20..0233cbe 100644
--- a/markdownx/models.py
+++ b/markdownx/models.py
@@ -23,7 +23,7 @@ class MarkdownxField(models.TextField):
:param editable: If ``False``, the field will not be displayed in the admin or any other
ModelForm. They are also skipped during model validation. Default is ``True``.
:type editable: bool
- :param help_text: Extra “help” text to be displayed with the form widget. It's useful for
+ :param help_text: Extra "help" text to be displayed with the form widget. It's useful for
documentation even if your field isn't used on a form. Note that this value
is not HTML-escaped in automatically-generated forms. This lets you include
HTML in ``help_text`` if you so desire.