summaryrefslogtreecommitdiff
path: root/security/py-fail2ban/files/patch-fail2ban_server_actions.py
blob: bdbf5ab2f18eb53a1516280b3e957ca142efc26a (plain) (blame)
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
From 42dee38ad2ac5c3f23bdf297d824022923270dd9 Mon Sep 17 00:00:00 2001
From: "Sergey G. Brester" <serg.brester@sebres.de>
Date: Mon, 8 Feb 2021 17:25:45 +0100
Subject: [PATCH] amend for `Mapping`

---
 fail2ban/server/actions.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git fail2ban/server/actions.py fail2ban/server/actions.py
index b7b95b44..897d907c 100644
--- fail2ban/server/actions.py
+++ fail2ban/server/actions.py
@@ -28,7 +28,10 @@ import logging
 import os
 import sys
 import time
-from collections import Mapping
+try:
+	from collections.abc import Mapping
+except ImportError:
+	from collections import Mapping
 try:
 	from collections import OrderedDict
 except ImportError:
-- 
2.32.0