diff --git a/AUTHORS.rst b/AUTHORS.rst index c6cd4e7..10c51b2 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -35,6 +35,7 @@ Contributors * Bug Fix: Sorter excludes items that do not have sorting attributes. * Bug Fix: CLTransformer now gracefully handles arguments that have "=". * Bug Fix: All occurrences of `str` replaced with `unicode`. + * Bug Fix: Support for encoded urls. - |merlinrebrovic|_ diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6acd9e6..acf74d7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +Version 0.8.4c11 +================ + +Thanks to @gfuchedzhy + +* Bug Fix: Added support for encoded urls to hyde server. (Issue #88) + Version 0.8.4c10 ================ diff --git a/hyde/ext/templates/jinja.py b/hyde/ext/templates/jinja.py index 4692624..a6717a8 100644 --- a/hyde/ext/templates/jinja.py +++ b/hyde/ext/templates/jinja.py @@ -787,4 +787,4 @@ class Jinja2Template(Template): Renders the given text using the context """ template = self.env.from_string(text) - return template.render(context) + return template.render(context) \ No newline at end of file