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())