X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..ea74f5d95928a521a588737e81f1de94eef25d19:/examples/python/actor-migrate/actor-migrate.py diff --git a/examples/python/actor-migrate/actor-migrate.py b/examples/python/actor-migrate/actor-migrate.py index d5213f4626..b78dbfc26f 100644 --- a/examples/python/actor-migrate/actor-migrate.py +++ b/examples/python/actor-migrate/actor-migrate.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017-2020. The SimGrid Team. All rights reserved. +# Copyright (c) 2017-2022. The SimGrid Team. All rights reserved. # # This program is free software; you can redistribute it and/or modify it # under the terms of the license (GNU LGPL) which comes with this package. @@ -47,12 +47,12 @@ def monitor(): this_actor.sleep_for(5) this_actor.info( - "After 5 seconds, move the process to {:s}".format(jacquelin.name)) + "After 5 seconds, move the actor to {:s}".format(jacquelin.name)) actor.host = jacquelin this_actor.sleep_until(15) this_actor.info( - "At t=15, move the process to {:s} and resume it.".format(fafard.name)) + "At t=15, move the actor to {:s} and resume it.".format(fafard.name)) actor.host = fafard actor.resume()