X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=examples%2Fplanetlab%2Fupdate_fedora_repo.py;h=ed26f8dfd5accea593b865592956e76590c92daf;hb=3fe2e6f7812888dc1366915545dd2243ff6fb1bb;hp=71ec4d8f3e0188f64c8a14f0dece7f8881750558;hpb=58a2b493f8df1072a1faa653c8abb6a3f9ba21fa;p=nepi.git diff --git a/examples/planetlab/update_fedora_repo.py b/examples/planetlab/update_fedora_repo.py index 71ec4d8f..ed26f8df 100644 --- a/examples/planetlab/update_fedora_repo.py +++ b/examples/planetlab/update_fedora_repo.py @@ -29,6 +29,8 @@ from __future__ import print_function +from six.moves import input + from nepi.execution.ec import ExperimentController from optparse import OptionParser, SUPPRESS_HELP @@ -57,7 +59,7 @@ parser.add_option("-k", "--pl-ssh-key", dest="pl_ssh_key", (options, args) = parser.parse_args() -proceed = raw_input ("Executing this script will modify the fedora yum repositories in the selected PlanetLab hosts. Are you sure to continue? [y/N] ") +proceed = input ("Executing this script will modify the fedora yum repositories in the selected PlanetLab hosts. Are you sure to continue? [y/N] ") if proceed.lower() not in ['yes', 'y']: os._exit(1)