From 32e9ef1cd3e3a0b8e663b56287e265f41fe82446 Mon Sep 17 00:00:00 2001 From: derrod Date: Thu, 2 Dec 2021 16:55:02 +0100 Subject: [PATCH] [core] Fix wrong property name for SaveGame --- legendary/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index c9ff630..c3c8e53 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -669,7 +669,7 @@ class LegendaryCore: if '.manifest' not in fname: continue f_parts = fname.split('/') - _saves.append(SaveGameFile(app_name=f_parts[2], filename=fname, manifest=f_parts[4], + _saves.append(SaveGameFile(app_name=f_parts[2], filename=fname, manifest_name=f_parts[4], datetime=datetime.fromisoformat(f['lastModified'][:-1]))) return _saves