]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
remove debugging print
authorBob Halley <halley@dnspython.org>
Sat, 11 Jun 2022 02:49:26 +0000 (19:49 -0700)
committerBob Halley <halley@dnspython.org>
Sat, 11 Jun 2022 02:49:26 +0000 (19:49 -0700)
tests/util.py

index bf417e4cae3c78b1956423617543ea77f93e3109..5518b4185c4482dfd2d1fdeb293bfe0a48cb7082 100644 (file)
@@ -90,7 +90,6 @@ def is_internet_reachable():
             _have_ipv6 = check_networking(
                 ["2001:4860:4860::8888", "2606:4700:4700::1111"]
             )
-            print(_have_ipv4 or _have_ipv6)
             _internet_reachable = _have_ipv4 or _have_ipv6
     return _internet_reachable