From 04a18782cafbe3d3e5c24caba39300ca4b7f3b21 Mon Sep 17 00:00:00 2001 From: karimpwnz Date: Mon, 4 Jan 2021 05:06:21 +0200 Subject: [PATCH] Finalize parse_command --- features/steps/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/steps/core.py b/features/steps/core.py index ae91fda4..c1c28c78 100644 --- a/features/steps/core.py +++ b/features/steps/core.py @@ -124,7 +124,7 @@ def read_value_from_string(string): def parse_command(command): - return command if not on_windows else command.split(" ") + return command if not on_windows else command.split() @given('we use the config "{config_file}"')