aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/streaming/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/streaming/context.py')
-rw-r--r--python/pyspark/streaming/context.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/pyspark/streaming/context.py b/python/pyspark/streaming/context.py
index 2c73083c9f..4590c58839 100644
--- a/python/pyspark/streaming/context.py
+++ b/python/pyspark/streaming/context.py
@@ -14,6 +14,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
+
+from __future__ import print_function
+
import os
import sys
@@ -157,7 +160,7 @@ class StreamingContext(object):
try:
jssc = gw.jvm.JavaStreamingContext(checkpointPath)
except Exception:
- print >>sys.stderr, "failed to load StreamingContext from checkpoint"
+ print("failed to load StreamingContext from checkpoint", file=sys.stderr)
raise
jsc = jssc.sparkContext()