always replace colon with space for seperate words

This commit is contained in:
chrys 2016-10-01 16:01:34 +02:00
parent de62c6f70e
commit cc2e5860c5

View File

@ -13,6 +13,7 @@ class punctuationManager():
def initialize(self, environment): def initialize(self, environment):
self.env = environment self.env = environment
self.allPunctNone = dict.fromkeys(map(ord, string.punctuation), None) self.allPunctNone = dict.fromkeys(map(ord, string.punctuation), None)
self.allPunctNone[':'] = ' '
self.punctuation = { self.punctuation = {
'levels':{ 'levels':{
'NONE': '', 'NONE': '',