Skip to content

Commit

Permalink
Update item.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Mar 19, 2024
1 parent 2ab1675 commit 878fb1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rom_detective/item.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 878fb1a

Please sign in to comment.