Make code compatible with Python 2.6+ and Python 3

This commit is contained in:
Christian Wygoda
2018-06-06 22:41:03 +02:00
parent 769d02b2a2
commit 856adada79
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ class TestRetryer(unittest.TestCase):
func = lambda : int(time.time())
returnval = retryer.call(func)
print returnval
print(returnval)
class TestFixedDelayStrategy(unittest.TestCase):