Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oobabooga committed Mar 15, 2023
1 parent 658849d commit bf812c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/html_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def process_post(post, c):
return src

def generate_4chan_html(f):
with open(Path(__file__).resolve().parent / '../css/html_4chan_style.css', 'r') as f:
css = f.read()
with open(Path(__file__).resolve().parent / '../css/html_4chan_style.css', 'r') as css_f:
css = css_f.read()

posts = []
post = ''
Expand Down

0 comments on commit bf812c4

Please sign in to comment.