diff --git a/worlds/alttp/Rom.py b/worlds/alttp/Rom.py index 2e0b81a4bd..2f62b37682 100644 --- a/worlds/alttp/Rom.py +++ b/worlds/alttp/Rom.py @@ -183,7 +183,7 @@ def check_enemizer(enemizercli): if getattr(check_enemizer, "done", None): return if not os.path.exists(enemizercli) and not os.path.exists(enemizercli + ".exe"): - raise Exception(f"Enemizer not found at {enemizercli}, please install it." + raise Exception(f"Enemizer not found at {enemizercli}, please install it. " f"Such as https://github.com/Ijwu/Enemizer/releases") with check_lock: diff --git a/worlds/factorio/Client.py b/worlds/factorio/Client.py index 422f719b65..beec7c434e 100755 --- a/worlds/factorio/Client.py +++ b/worlds/factorio/Client.py @@ -584,7 +584,7 @@ def launch(*new_args: str): # args handling parser = get_base_parser(description="Optional arguments to Factorio Client follow. " - "Remaining arguments get passed into bound Factorio instance." + "Remaining arguments get passed into bound Factorio instance. " "Refer to Factorio --help for those.") parser.add_argument('--rcon-port', default='24242', type=int, help='Port to use to communicate with Factorio') parser.add_argument('--rcon-password', help='Password to authenticate with RCON.')