@@ -247,12 +247,12 @@ def isValid (self, sWord): "checks if is valid (different casing tested if the first letter is a capital)" if not sWord: return None - if "’" in sWord: # ugly hack - sWord = sWord.replace("’", "'") + if "'" in sWord: # ugly hack + sWord = sWord.replace("'", "’") if self.lookup(sWord): return True if sWord[0:1].isupper(): if len(sWord) > 1: if sWord.istitle():