use print() - import print_function - should be fine for both py2 and py3
[nepi.git] / examples / planetlab / update_fedora_repo.py
index 67c82a3..cd2a9cd 100644 (file)
@@ -27,6 +27,8 @@
 # $ cd <path-to-nepi>
 # python examples/planetlab/update_fedora_repo.py -H <host1,host2,..> -s <pl-slice> -u <pl-user> -p <pl-password> -k <pl-ssh-key>  
 
+from __future__ import print_function
+
 from nepi.execution.ec import ExperimentController 
 
 from optparse import OptionParser, SUPPRESS_HELP
@@ -132,9 +134,9 @@ ec.wait_finished(apps)
 
 for app in apps:
     try:
-        print ec.trace(app, "stderr")
+        print(ec.trace(app, "stderr"))
     except:
-        print "NO stderr"
+        print("NO stderr")
 
 ec.shutdown()