Skip to content

Commit cdf61fb

Browse files
daspecstertravis-ci
authored andcommitted
Use __future__ print_function.
1 parent 4d2d64c commit cdf61fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/get_version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414

1515
"""Simple script to get the google-cloud version."""
1616

17+
from __future__ import print_function
1718
from pkg_resources import get_distribution
18-
print(get_distribution('google-cloud').version)
19+
print_function(get_distribution('google-cloud').version)

0 commit comments

Comments
 (0)