From 6c1203c22fbbcc3b3de31483ddd8666651c6399a Mon Sep 17 00:00:00 2001 From: prodigysml Date: Thu, 22 Aug 2019 11:38:46 +1000 Subject: [PATCH] Made the single command usage of interlace a Task object --- 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 164566c..3c0dc6b 100644 --- a/Interlace/lib/core/input.py +++ b/Interlace/lib/core/input.py @@ -236,7 +236,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, '')