Skip to content

Commit

Permalink
Fix bug in md_generator
Browse files Browse the repository at this point in the history
  • Loading branch information
djmgit committed Sep 13, 2020
1 parent 2975aec commit 9a75320
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified src/core/md_generator/__pycache__/md_generator.cpython-37.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion src/core/md_generator/md_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def generate_todo_md(self):
md_template = Template(tf.read())

# Render the template using Jinja2
rendered_todo_md = md_template.render(todo_list=self.__todo_list, t=self.__todo_list[0])
rendered_todo_md = md_template.render(todo_list=self.__todo_list)

# Create the "md" file
with open(self.__gen_path, "w") as gf:
Expand Down

0 comments on commit 9a75320

Please sign in to comment.