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:
Yaroslav Halchenko
2012-11-05 16:54:19 -05:00
parent 5becaf8ef2
commit 09355663f7

View File

@@ -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')