aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/python/hbase_outputformat.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/src/main/python/hbase_outputformat.py')
-rw-r--r--examples/src/main/python/hbase_outputformat.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/src/main/python/hbase_outputformat.py b/examples/src/main/python/hbase_outputformat.py
index abb425b1f8..9e5641789a 100644
--- a/examples/src/main/python/hbase_outputformat.py
+++ b/examples/src/main/python/hbase_outputformat.py
@@ -15,6 +15,8 @@
# limitations under the License.
#
+from __future__ import print_function
+
import sys
from pyspark import SparkContext
@@ -40,7 +42,7 @@ ROW COLUMN+CELL
"""
if __name__ == "__main__":
if len(sys.argv) != 7:
- print >> sys.stderr, """
+ print("""
Usage: hbase_outputformat <host> <table> <row> <family> <qualifier> <value>
Run with example jar:
@@ -48,7 +50,7 @@ if __name__ == "__main__":
/path/to/examples/hbase_outputformat.py <args>
Assumes you have created <table> with column family <family> in HBase
running on <host> already
- """
+ """, file=sys.stderr)
exit(-1)
host = sys.argv[1]