Skip to content

Instantly share code, notes, and snippets.

@0xcpu
Created October 10, 2018 18:43
Show Gist options
  • Save 0xcpu/849e95c70768039656942ad4dcc23881 to your computer and use it in GitHub Desktop.
Save 0xcpu/849e95c70768039656942ad4dcc23881 to your computer and use it in GitHub Desktop.
templite.py python3 patch
32c32
<
---
>
69c69
<
---
>
112,113c112,113
< if isinstance(value, unicode):
< value = value.encode(self.encoding)
---
> #if isinstance(value, str):
> # value = value.encode(self.encoding)
129,130c129,130
< exec self._code in namespace
< return ''.join(stack)
\ No newline at end of file
---
> exec(self._code, namespace)
> return "".join(stack)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment