From 6b7544a63ab430e44f313a8bbbef4fe2abfa9e3f Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 31 Jul 2012 21:41:03 -0400 Subject: [PATCH 1/2] BF: removed sneaked a commented out sys.path.insert --- fail2ban-regex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fail2ban-regex b/fail2ban-regex index 45b01861..0d634b70 100755 --- a/fail2ban-regex +++ b/fail2ban-regex @@ -29,7 +29,7 @@ import getopt, sys, time, logging, os # Inserts our own modules path first in the list # fix for bug #343821 -#sys.path.insert(1, "/usr/share/fail2ban") +sys.path.insert(1, "/usr/share/fail2ban") from client.configparserinc import SafeConfigParserWithIncludes from ConfigParser import NoOptionError, NoSectionError, MissingSectionHeaderError From 0b5c66fb595f66ba804d7dd176025136b58a6ea7 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 31 Jul 2012 21:44:00 -0400 Subject: [PATCH 2/2] Changelog for the fix -- will rerelease 0.8.7.1 --- ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index c3e9b5ee..1d79aa02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,13 @@ Fail2Ban (version 0.8.7) 2012/07/31 ================================================================================ +ver. 0.8.7.1 (2012/07/31) - stable +---------- + +- Fixes: + Yaroslav Halchenko + * [e9762f3] Removed sneaked in comment on sys.path.insert + ver. 0.8.7 (2012/07/31) - stable ----------