@@ -212,7 +212,6 @@ def call_anchor(fileName,avatar):
def trim_punctuation(s):
pat_block = u'[^\u4e00-\u9fff0-9a-zA-Z]+';
pattern = u'([0-9]+{0}[0-9]+)|{0}'.format(pat_block)
- pattern.pop(' ')
res = re.sub(pattern, lambda x: x.group(1) if x.group(1) else u" " ,s)
return res