27 lines
805 B
Diff
27 lines
805 B
Diff
|
From fa0773ddd5d27762d10ad769c119ef87b1684e5e Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||
|
Date: Thu, 31 Aug 2023 13:04:34 +0200
|
||
|
Subject: [PATCH 13/38] Avoid warnings on python2
|
||
|
|
||
|
Use python3 compatible print function
|
||
|
---
|
||
|
repos/system_upgrade/el7toel8/libraries/isccfg.py | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/repos/system_upgrade/el7toel8/libraries/isccfg.py b/repos/system_upgrade/el7toel8/libraries/isccfg.py
|
||
|
index 1d29ff21..45baba0b 100644
|
||
|
--- a/repos/system_upgrade/el7toel8/libraries/isccfg.py
|
||
|
+++ b/repos/system_upgrade/el7toel8/libraries/isccfg.py
|
||
|
@@ -2,6 +2,8 @@
|
||
|
#
|
||
|
# Simplified parsing of bind configuration, with include support and nested sections.
|
||
|
|
||
|
+from __future__ import print_function
|
||
|
+
|
||
|
import re
|
||
|
import string
|
||
|
|
||
|
--
|
||
|
2.41.0
|
||
|
|