Created
October 10, 2018 18:43
-
-
Save 0xcpu/849e95c70768039656942ad4dcc23881 to your computer and use it in GitHub Desktop.
templite.py python3 patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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