MMBN3: Add spaces in concatenated string#5689

This commit is contained in:
Duck
2026-04-29 12:55:32 -06:00
committed by GitHub
parent 15561e1e2d
commit 01033940d6
2 changed files with 3 additions and 3 deletions

View File

@@ -241,8 +241,8 @@ async def gba_sync_task(ctx: MMBN3Context):
await ctx.server_auth(False)
else:
if not ctx.version_warning:
logger.warning(f"Your Lua script is version {reported_version}, expected {script_version}."
"Please update to the latest version."
logger.warning(f"Your Lua script is version {reported_version}, expected {script_version}. "
"Please update to the latest version. "
"Your connection to the Archipelago server will not be accepted.")
ctx.version_warning = True
except asyncio.TimeoutError:

View File

@@ -341,7 +341,7 @@ def get_base_rom_bytes(file_name: str = "") -> bytes:
basemd5 = hashlib.md5()
basemd5.update(base_rom_bytes)
if CHECKSUM_BLUE != basemd5.hexdigest():
raise Exception('Supplied Base Rom does not match US GBA Blue Version.'
raise Exception('Supplied Base Rom does not match US GBA Blue Version. '
'Please provide the correct ROM version')
get_base_rom_bytes.base_rom_bytes = base_rom_bytes