From d95fd20e7616d95c8b0fb79f915aa9b97b9edcd5 Mon Sep 17 00:00:00 2001 From: derrod Date: Sat, 24 Oct 2020 19:18:58 +0200 Subject: [PATCH] [core] Use non-POSIX mode for parsing manifest launch arguments (hopefully) Fixes #128 --- legendary/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index db4660c..9ad6fdc 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -336,7 +336,7 @@ class LegendaryCore: params.append(game_exe) if install.launch_parameters: - params.extend(shlex.split(install.launch_parameters)) + params.extend(shlex.split(install.launch_parameters, posix=False)) params.extend([ '-AUTH_LOGIN=unused',