From 3ba33d7784e939dbf0de97468d7c9cb87dc2c8de Mon Sep 17 00:00:00 2001 From: Kyle2142 <19349418+Kyle2142@users.noreply.github.com> Date: Thu, 25 May 2023 18:00:43 +0000 Subject: [PATCH] Fix weirdness with \t in app names --- legendary/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/legendary/core.py b/legendary/core.py index 838bb33..694b372 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -509,6 +509,7 @@ class LegendaryCore: ignore = set(i.app_name for i in self.get_assets()) for libitem in self.egs.get_library_items(): + libitem['appName'] = libitem['appName'].strip() # handle issues with \t etc. if libitem['namespace'] == 'ue' and skip_ue: continue if libitem['appName'] in ignore: