1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
From: Sophie Brun <sophie@kali.org>
Date: Thu, 6 Nov 2025 11:56:45 +0100
Subject: Use python3-terminaltables3 fork
Date: 2025-11-06
python3-terminaltables is dead, switch to the fork.
Debian-Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1114546
---
scripts/monthly-report-gos24.10.gmp.py | 2 +-
scripts/monthly-report-gos3.gmp.py | 2 +-
scripts/monthly-report-gos4.gmp.py | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/monthly-report-gos24.10.gmp.py b/scripts/monthly-report-gos24.10.gmp.py
index 23d601d..a3da88c 100644
--- a/scripts/monthly-report-gos24.10.gmp.py
+++ b/scripts/monthly-report-gos24.10.gmp.py
@@ -6,7 +6,7 @@ from argparse import ArgumentParser, Namespace, RawDescriptionHelpFormatter
from datetime import date, datetime, timedelta
from gvm.protocols.gmp import Gmp
-from terminaltables import AsciiTable
+from terminaltables3 import AsciiTable
def print_reports(
diff --git a/scripts/monthly-report-gos3.gmp.py b/scripts/monthly-report-gos3.gmp.py
index 404b081..a56833e 100644
--- a/scripts/monthly-report-gos3.gmp.py
+++ b/scripts/monthly-report-gos3.gmp.py
@@ -8,7 +8,7 @@ from datetime import date, timedelta
from gvm.protocols.gmp import Gmp
from lxml.etree import Element
-from terminaltables import AsciiTable
+from terminaltables3 import AsciiTable
def check_args(args: Namespace) -> None:
diff --git a/scripts/monthly-report-gos4.gmp.py b/scripts/monthly-report-gos4.gmp.py
index 74c470b..adbf7bd 100644
--- a/scripts/monthly-report-gos4.gmp.py
+++ b/scripts/monthly-report-gos4.gmp.py
@@ -7,7 +7,7 @@ from argparse import Namespace
from datetime import date, timedelta
from gvm.protocols.gmp import Gmp
-from terminaltables import AsciiTable
+from terminaltables3 import AsciiTable
def check_args(args: Namespace) -> None:
|