From 7f2c2f8d62d1b5b9db5f4d9f54b1c164edbab464 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 13 Oct 2016 00:06:30 -0700 Subject: [PATCH] Make unescape.py python3 compatible --- dotfiles/lib/python/unescape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/lib/python/unescape.py b/dotfiles/lib/python/unescape.py index 1f251175..b0deb329 100755 --- a/dotfiles/lib/python/unescape.py +++ b/dotfiles/lib/python/unescape.py @@ -3,7 +3,7 @@ import sys def unescape(string): - print eval(string) + print(eval(string)) if __name__ == '__main__':