From: Kyr Shatskyy Date: Mon, 7 Oct 2019 10:28:33 +0000 (+0200) Subject: contextutil: python3 compatibility X-Git-Tag: 1.1.0~223^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=25f20e3454fe3f86e204fca8d3a781e0f6cf7403;p=teuthology.git contextutil: python3 compatibility Signed-off-by: Kyr Shatskyy --- diff --git a/teuthology/contextutil.py b/teuthology/contextutil.py index 148ec4383..cdd904953 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): ...