init 1090 python: def replace_text(t1): t1 = t1.replace("LandLord", "Dad") t1 = t1.replace("Landlord", "Dad") t1 = t1.replace("Landlady", "Mom") t1 = t1.replace("LandLady", "Mom") t1 = t1.replace("Tenet", "Son") t1 = t1.replace("You were just a child when I last visited your family!", "A mother should never go this long without seeing her son!") return t1 config.replace_text = replace_text