From d0614ae7c3698857878a59ed429ce125e45b2c7d Mon Sep 17 00:00:00 2001 From: Serge Rehbinder Date: Wed, 23 Nov 2016 11:31:53 +0100 Subject: [PATCH] sat log: bug fix for --terminal option --- commands/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/log.py b/commands/log.py index edd425b..12d26bb 100644 --- a/commands/log.py +++ b/commands/log.py @@ -223,7 +223,7 @@ def run(args, runner, logger): lLogs = src.logger.list_log_file(logDir, src.logger.log_macro_command_file_expression) lLogsFiltered = [] - for filePath, __, date, __, hour, cmd in lLogs: + for filePath, __, date, __, hour, cmd, __ in lLogs: showLog, cmdAppli = src.logger.show_command_log(filePath, cmd, runner.cfg.VARS.application, notShownCommands) if showLog: -- 2.39.2