Skip to content

Commit bf812c4

Browse files
committed
Minor fix
1 parent 658849d commit bf812c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/html_generator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ def process_post(post, c):
3737
return src
3838

3939
def generate_4chan_html(f):
40-
with open(Path(__file__).resolve().parent / '../css/html_4chan_style.css', 'r') as f:
41-
css = f.read()
40+
with open(Path(__file__).resolve().parent / '../css/html_4chan_style.css', 'r') as css_f:
41+
css = css_f.read()
4242

4343
posts = []
4444
post = ''

0 commit comments

Comments
 (0)