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}"')