mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 01:45:28 +00:00
[cli] Strip whitespace from game titles
Yoku's Island Express has a \t for some reason...
This commit is contained in:
parent
6b4cf6558b
commit
cffd9040f7
|
@ -192,7 +192,7 @@ class LegendaryCLI:
|
|||
|
||||
print('\nAvailable games:')
|
||||
for game in games:
|
||||
print(f' * {game.app_title} (App name: {game.app_name} | Version: {game.app_version})')
|
||||
print(f' * {game.app_title.strip()} (App name: {game.app_name} | Version: {game.app_version})')
|
||||
if not game.app_version:
|
||||
_custom_attribs = game.metadata.get('customAttributes', {})
|
||||
_store = _custom_attribs.get('ThirdPartyManagedApp', {}).get('value', 'Unknown')
|
||||
|
|
Loading…
Reference in a new issue