From b9730cb4a5508828d02395353bb7bf40a3686f23 Mon Sep 17 00:00:00 2001 From: Krytarik Raido Date: Sat, 18 May 2024 19:04:04 +0200 Subject: Update for Python 3.12 --- minidinstall/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'minidinstall') diff --git a/minidinstall/misc.py b/minidinstall/misc.py index 5f7fb71..4c72ceb 100644 --- a/minidinstall/misc.py +++ b/minidinstall/misc.py @@ -37,7 +37,7 @@ def dup2(fd, fd2): def format_changes(L): """ remove changelog header and all lines with only a dot """ - dotmatch = re.compile('^\.$') + dotmatch = re.compile('^\\.$') L1 = [] for x in L[3:]: -- cgit v1.2.3