From 451200b8e0b4a64ff7db804c6430243cb592ad5d Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Fri, 3 Apr 2020 19:28:10 +0800 Subject: [PATCH] task/background_exec.py: s/itervalues/values/ to by python3 compatible Signed-off-by: Kefu Chai --- teuthology/task/background_exec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/background_exec.py b/teuthology/task/background_exec.py index cf187e9f5d..897b525312 100644 --- a/teuthology/task/background_exec.py +++ b/teuthology/task/background_exec.py @@ -73,4 +73,4 @@ def task(ctx, config): for name, task in tasks.items(): log.info('Stopping background command on %s', name) task.stdin.close() - run.wait(tasks.itervalues()) + run.wait(tasks.values()) -- 2.39.5