From 6e328edcbcab28b6d6a3abbb46b48a6a18e660c2 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Sat, 15 Feb 2020 11:14:31 +0100 Subject: [PATCH] qa/tasks/watch_notify_stress: get rid of itervalues for py3 Signed-off-by: Kyr Shatskyy --- qa/tasks/watch_notify_stress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/watch_notify_stress.py b/qa/tasks/watch_notify_stress.py index 8bce6282092ad..f3cdf0d549643 100644 --- a/qa/tasks/watch_notify_stress.py +++ b/qa/tasks/watch_notify_stress.py @@ -66,5 +66,5 @@ def task(ctx, config): yield finally: log.info('joining watch_notify_stress') - for i in testwatch.itervalues(): + for i in testwatch.values(): i.join() -- 2.39.5