]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
remove debug print from retry_on_timeout
authorBob Halley <halley@dnspython.org>
Sat, 12 Oct 2024 16:48:37 +0000 (09:48 -0700)
committerBob Halley <halley@dnspython.org>
Sat, 12 Oct 2024 16:48:37 +0000 (09:48 -0700)
tests/util.py

index f029fb02b114df65dd3d0288e488e012ed01268f..a448f2d5c95e17c14bdcf063bd56935b47cc2e43 100644 (file)
@@ -141,7 +141,6 @@ def retry_on_timeout(f):
         bad = True
         for i in range(3):
             try:
-                print("TRY", i, "for", f.__name__)
                 f(*args, **kwargs)
                 bad = False
                 break