From 414aaa3aaf93c0e4b4c9957fd8fff669bda37cc8 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 3 Jun 2016 23:41:26 -0400 Subject: [PATCH] Include from __future__ print_function --- bin/texas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/texas b/bin/texas index 0ebea17..d62bc78 100755 --- a/bin/texas +++ b/bin/texas @@ -1,7 +1,9 @@ #!/usr/bin/env python + +from __future__ import print_function import os _ROOT = os.path.abspath(os.path.dirname(__file__)) texas = os.path.join(_ROOT, "../bashplotlib", "data", "texas.txt") -print open(texas).read().strip() +print(open(texas).read().strip())