From b3e42cf30c7b341b2a08ae1335040e91c9e18b31 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Sat, 15 Feb 2020 11:15:28 +0100 Subject: [PATCH] qa/tasks/ragweed: get rid of itervalues for py3 Signed-off-by: Kyr Shatskyy --- qa/tasks/ragweed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ragweed.py b/qa/tasks/ragweed.py index cc63ce74247..ba59f7959fb 100644 --- a/qa/tasks/ragweed.py +++ b/qa/tasks/ragweed.py @@ -155,7 +155,7 @@ def create_users(ctx, config, run_stages): if not 'check' in run_stages[client]: # only remove user if went through the check stage continue - for user in users.itervalues(): + for user in users.values(): uid = '{user}.{client}'.format(user=user, client=client) ctx.cluster.only(client).run( args=[ -- 2.39.5