remove undused punctuation

This commit is contained in:
chrys 2017-12-11 23:01:39 +01:00
parent a0395ce093
commit 5b7bfafbd9

View File

@ -66,7 +66,7 @@ class punctuationManager():
else: else:
currPunctLevel = string.punctuation +' §' currPunctLevel = string.punctuation +' §'
resultText = self.usePunctuationDict(resultText, self.env['punctuation']['PUNCTDICT'], currPunctLevel) resultText = self.usePunctuationDict(resultText, self.env['punctuation']['PUNCTDICT'], currPunctLevel)
#resultText = self.removeUnused(resultText, currPunctLevel) resultText = self.removeUnused(resultText, currPunctLevel)
return resultText return resultText
def cyclePunctuation(self): def cyclePunctuation(self):