X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..bdee35a6464a810cd4e71dd2871339e423233f1b:/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 63e321a7eb..48b4b4931f 100644 --- a/examples/python/actor-migrate/actor-migrate.py +++ b/examples/python/actor-migrate/actor-migrate.py @@ -53,7 +53,7 @@ def monitor(): if __name__ == '__main__': e = Engine(sys.argv) if len(sys.argv) < 2: raise AssertionError("Usage: actor-migration.py platform_file [other parameters]") - e.load_platform(sys.argv[1]) + e.load_platform(sys.argv[1]) Actor.create("monitor", Host.by_name("Boivin"), monitor) e.run()