use print() - import print_function - should be fine for both py2 and py3
[nepi.git] / examples / linux / vlc_streaming.py
index 3533e01..4b5d83d 100644 (file)
@@ -21,6 +21,8 @@
 # $ cd <path-to-nepi>
 # python examples/linux/vlc_streaming.py -a <hostname1> -b <hostname2> -u <username> -i <ssh-key>
 
+from __future__ import print_function
+
 from nepi.execution.ec import ExperimentController
 from nepi.execution.resource import ResourceState, ResourceAction 
 
@@ -120,5 +122,5 @@ f.close()
 
 ec.shutdown()
 
-print "Streamed VIDEO stored localy at video.ts"
+print("Streamed VIDEO stored localy at video.ts")