Skip to content

Commit

Permalink
πŸ”€ Merge pull request #106 from code-master-ajay:main
Browse files Browse the repository at this point in the history
Update run.py, Add encoding while opening output html file
  • Loading branch information
skadogg authored Feb 22, 2024
2 parents 3eb68ed + 4b279c0 commit d9dfa3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
# Begin writing HTML output
logging.info('Writing HTML output')
logging.info('-------------------')
html_handle = open(outfile, '+w')
html_handle = open(outfile, '+w', encoding="utf-8")
html_handle.write(modules.html.generate_html_start(stylesheet_path))

# Begin writing the main table for your personal TV guide
Expand Down

0 comments on commit d9dfa3b

Please sign in to comment.