From 25f20e3454fe3f86e204fca8d3a781e0f6cf7403 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Mon, 7 Oct 2019 12:28:33 +0200 Subject: [PATCH] contextutil: python3 compatibility Signed-off-by: Kyr Shatskyy --- teuthology/contextutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/contextutil.py b/teuthology/contextutil.py index 148ec43837..cdd9049534 100644 --- a/teuthology/contextutil.py +++ b/teuthology/contextutil.py @@ -66,7 +66,7 @@ class safe_while(object): >>> with safe_while() as proceed: ... while proceed(): ... # repetitive code here - ... print "hello world" + ... print("hello world") ... Traceback (most recent call last): ... -- 2.39.5