From 878fb1a3dccfe6fbb6dfebe7d2036ed9897fcf63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Gr=C3=B8n=C3=A5s?= <44143748+sondregronas@users.noreply.github.com> Date: Wed, 20 Mar 2024 00:11:02 +0100 Subject: [PATCH] Update item.py --- src/rom_detective/item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rom_detective/item.py b/src/rom_detective/item.py index 8cf36aa..1893c6e 100644 --- a/src/rom_detective/item.py +++ b/src/rom_detective/item.py @@ -134,7 +134,7 @@ def subclass_init(self) -> None: self.g_id = self.source.split('\\')[-1] self.source += r'\PS3_GAME\USRDIR\EBOOT.BIN' try: - self.filename = const.DATABASES.gameslist_ps3[self.g_id] if not self.filename else self.filename + self.filename = f'{const.DATABASES.gameslist_ps3[self.g_id]}.BIN' if not self.filename else self.filename except KeyError: print(f'Warning (PS3): {self.g_id} is not a valid PS3 ID and will be blacklisted') self.clean_brackets = False