What they're Saying
"""
new_saying = """
What they're Saying
"""
if old_saying in html:
html = html.replace(old_saying, new_saying)
else:
print("Error: Could not find exact saying block string.")
sys.exit(1)
with open('tmp_home_current.html', 'w', encoding='utf-8') as f:
f.write(html)
print("Success.")