propagated fix for the path bug. Thanks to Nick Craig-Wood

git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@225 a942ae1a-1317-0410-a47c-b1dcaea8d605
0.6
Yaroslav Halchenko 2005-12-27 15:09:50 +00:00
parent 7494fe283b
commit 3eb0ca0ee5
2 changed files with 6 additions and 2 deletions

View File

@ -13,6 +13,9 @@ ver. 0.6.? (200?/??/??) - ???
enable this feature (-1 is perfect). Thanks to Mannone
- Fixed locale bug. Thanks to Fernando José
- Fixed crash when time format does not match data
- Propagated patch from Debian to fix fail2ban search path
addition to the path search list: now it is added first.
Thanks to Nick Craig-Wood
ver. 0.6.0 (2005/11/20) - stable
----------

View File

@ -35,8 +35,9 @@ except Exception:
print "Unable to set locale to " + `locale.getdefaultlocale()`
sys.exit(-1)
# Appends our own modules path.
sys.path.append("/usr/lib/fail2ban")
# Inserts our own modules path first in the list
# fix for bug #343821
sys.path.insert(1, "/usr/lib/fail2ban")
# Now we can import our modules.
import fail2ban