Fix unicode issue introduced by previous commit.
This commit is contained in:
parent
4a8d1703d4
commit
130139dc80
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ class Templar:
|
||||||
return C.DEFAULT_NULL_REPRESENTATION
|
return C.DEFAULT_NULL_REPRESENTATION
|
||||||
|
|
||||||
# Using a cache in order to prevent template calls with already templated variables
|
# Using a cache in order to prevent template calls with already templated variables
|
||||||
sha1_hash = sha1(variable + str(preserve_trailing_newlines) + str(escape_backslashes) + str(fail_on_undefined) + str(overrides)).hexdigest()
|
sha1_hash = sha1(variable.encode('utf-8') + str(preserve_trailing_newlines) + str(escape_backslashes) + str(fail_on_undefined) + str(overrides)).hexdigest()
|
||||||
if sha1_hash in self._cached_result:
|
if sha1_hash in self._cached_result:
|
||||||
result = self._cached_result[sha1_hash]
|
result = self._cached_result[sha1_hash]
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue