From 09355663f7a3c0409e08efdebf98b1bbf47d1d9c Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 5 Nov 2012 16:54:19 -0500 Subject: [PATCH] BF: (python 2.4) -- access to staticmethod should go via Class TODO: get away from using all those staticmethods in f2b --- server/action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/action.py b/server/action.py index 387c115c..bd750337 100644 --- a/server/action.py +++ b/server/action.py @@ -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("
", '\n')