diff --git a/module/helper.py b/module/helper.py index f2a10ae1..b868c792 100644 --- a/module/helper.py +++ b/module/helper.py @@ -761,7 +761,7 @@ def get_timeperiod_html(self, tp): return '' # Build a definition list ... - content = '''
''' + content = '''
''' for dr in sorted(tp.dateranges, key=operator.methodcaller("get_start_and_end_time")): (dr_start, dr_end) = dr.get_start_and_end_time() dr_start = time.strftime("%d %b %Y", time.localtime(dr_start)) @@ -783,7 +783,7 @@ def get_timeperiod_html(self, tp): # Build a definition list ... if tp.exclude: - content += '''
Excluded: ''' + content += '''
Excluded: ''' for excl in tp.exclude: content += self.get_timeperiod_html(excl) content += '''
'''