From e66687316507447a45001ce42dd9c8cf4e75387a Mon Sep 17 00:00:00 2001 From: Serge Rehbinder Date: Fri, 18 Nov 2016 16:13:31 +0100 Subject: [PATCH] fix bug for 'sat log --clean' --- commands/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/log.py b/commands/log.py index 83be789..cff2d67 100644 --- a/commands/log.py +++ b/commands/log.py @@ -162,7 +162,7 @@ def run(args, runner, logger): nbClean = nbLogFiles # Get the list to delete and do the removing lLogsToDelete = sorted(lLogs)[:nbClean] - for filePath, __, __, __, __, __ in lLogsToDelete: + for filePath, __, __, __, __, __, __ in lLogsToDelete: # remove the xml log file remove_log_file(filePath, logger) # remove also the corresponding txt file in OUT directory -- 2.30.2