Closed plumdog closed 10 years ago
I was getting errors on
{% load markdown_deux_tags %}
telling me it was getting an import error on "force_unicode".
Some digging in the docs led me to: https://docs.djangoproject.com/en/1.6/ref/utils/
Which said:
force_unicode Historical name of force_text(). Only available under Python 2.
So based on the use of the word "historical", I changed it to use force_text.
:+1:
Thanks! Sorry I didn't notice this PR earlier.
Published in django-markdown-deux 1.0.5
https://pypi.python.org/pypi/django-markdown-deux/
No problem! Thanks for accepting the PR and for making a awesome project.
I was getting errors on
telling me it was getting an import error on "force_unicode".
Some digging in the docs led me to: https://docs.djangoproject.com/en/1.6/ref/utils/
Which said:
So based on the use of the word "historical", I changed it to use force_text.