From be9223b43798a61eed6ae110842bee54e02afe98 Mon Sep 17 00:00:00 2001 From: Sean Graham Date: Fri, 27 Feb 2009 23:38:25 +0800 Subject: [PATCH] i'm an idiot and forgot to blow away the variable declarations inside replaceLJTags after moving them to the global scope. Signed-off-by: Greg Hewgill --- convertdump.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/convertdump.py b/convertdump.py index 4eb143d..0f59e82 100755 --- a/convertdump.py +++ b/convertdump.py @@ -190,14 +190,6 @@ embedRE = re.compile('', re.IGNORECASE) def replaceLJTags(entry): rv = entry - userRE = re.compile('', re.IGNORECASE) - commRE = re.compile('', re.IGNORECASE) - namedCutRE = re.compile('', - re.IGNORECASE|re.DOTALL) - cutRE = re.compile('', re.IGNORECASE) - cutRE = re.compile('', re.IGNORECASE) - embedRE = re.compile('', re.IGNORECASE) - # replace lj user tags rv = re.sub(userRE, '\\1', rv) -- 2.39.5