From cf8852a1ab125e0350d7836f1c55135f6f02fad3 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 7 Feb 2016 14:07:14 -0500 Subject: updated RenderHTML function. Made it generic so that it can be used to render both the schedule and the speakers'. --- lps_gen.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lps_gen.py b/lps_gen.py index 2322960..52ef510 100644 --- a/lps_gen.py +++ b/lps_gen.py @@ -254,8 +254,8 @@ class LPSpeakersMarkdown(Markdown): return lpspeakers_dict -def RenderHTML(lps_dict, template): - """Renders LP schedule in HTML from a python dictionary. +def RenderHTML(lp_dict, template): + """Renders LP schedule/speakers in HTML from a python dictionary. Returns the HTML as a string. """ @@ -271,9 +271,9 @@ def RenderHTML(lps_dict, template): print "Template %s not found." % template_name exit(1) - lps_html = template.render(schedule=lps_dict) + lp_html = template.render(lp_dict=lp_dict) - return BeautifulSoup(lps_html, 'html.parser').prettify() + return BeautifulSoup(lp_html, 'html.parser').prettify() def main(): -- cgit v1.2.3