Skip to content

Commit 4646264

Browse files
committed
Merge pull request #38 from tijko/master
Include from __future__ print_function
2 parents b26cb75 + 414aaa3 commit 4646264

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/texas

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/env python
2+
3+
from __future__ import print_function
24
import os
35

46
_ROOT = os.path.abspath(os.path.dirname(__file__))
57

68
texas = os.path.join(_ROOT, "../bashplotlib", "data", "texas.txt")
7-
print open(texas).read().strip()
9+
print(open(texas).read().strip())

0 commit comments

Comments
 (0)