mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-07-10 09:33:02 +00:00
BF: (python 2.4) -- access to staticmethod should go via Class
TODO: get away from using all those staticmethods in f2b
This commit is contained in:
parent
5becaf8ef2
commit
09355663f7
1 changed files with 1 additions and 1 deletions
|
|
@ -255,7 +255,7 @@ class Action:
|
|||
if tag == 'matches':
|
||||
# That one needs to be escaped since its content is
|
||||
# out of our control
|
||||
value = escapeTag(value)
|
||||
value = Action.escapeTag(value)
|
||||
string = string.replace('<' + tag + '>', value)
|
||||
# New line
|
||||
string = string.replace("<br>", '\n')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue