From 8cd43a67b5c05f8008d33e8d2fc3f64dc99566bd Mon Sep 17 00:00:00 2001 From: Joshua Ogunyinka Date: Fri, 23 Aug 2019 01:09:41 +0100 Subject: [PATCH] Fixed CLI single command bug --- Interlace/lib/core/input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interlace/lib/core/input.py b/Interlace/lib/core/input.py index 003eafd..5ed5514 100644 --- a/Interlace/lib/core/input.py +++ b/Interlace/lib/core/input.py @@ -239,7 +239,7 @@ class InputHelper(object): random_file = choice(files) if arguments.command: - commands.append(arguments.command.rstrip('\n')) + commands.append(Task(arguments.command.rstrip('\n'))) else: commands = InputHelper._pre_process_commands(arguments.command_list)