From 2517af69f65794c1be799cacc2d7774044381eec Mon Sep 17 00:00:00 2001 From: Martin Date: Sat, 2 Jul 2016 01:53:36 +0200 Subject: [PATCH] Pylint: tests: py3: use print function --- tests/test_dnssec.py | 2 ++ tests/test_name.py | 2 ++ tests/test_ntoaaton.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/tests/test_dnssec.py b/tests/test_dnssec.py index a6cb264e..91f6a386 100644 --- a/tests/test_dnssec.py +++ b/tests/test_dnssec.py @@ -13,6 +13,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +from __future__ import print_function + try: import unittest2 as unittest except ImportError: diff --git a/tests/test_name.py b/tests/test_name.py index ea19b95a..6aab7bbd 100644 --- a/tests/test_name.py +++ b/tests/test_name.py @@ -13,6 +13,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +from __future__ import print_function + try: import unittest2 as unittest except ImportError: diff --git a/tests/test_ntoaaton.py b/tests/test_ntoaaton.py index 24fe3453..b45689c8 100644 --- a/tests/test_ntoaaton.py +++ b/tests/test_ntoaaton.py @@ -13,6 +13,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +from __future__ import print_function + try: import unittest2 as unittest except ImportError: -- 2.47.3