From e7979adc9a0d867cb8dccea94101b0919ca0dadd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= Date: Thu, 31 Aug 2023 13:04:34 +0200 Subject: [PATCH] Avoid warnings on python2 Use python3 compatible print function --- repos/system_upgrade/el7toel8/libraries/isccfg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/repos/system_upgrade/el7toel8/libraries/isccfg.py b/repos/system_upgrade/el7toel8/libraries/isccfg.py index 1d29ff21d4..3af9b40e85 100644 --- a/repos/system_upgrade/el7toel8/libraries/isccfg.py +++ b/repos/system_upgrade/el7toel8/libraries/isccfg.py @@ -2,6 +2,7 @@ # # Simplified parsing of bind configuration, with include support and nested sections. +from __future__ import print_function import re import string