# HG changeset patch # User Paul Boddie # Date 1371479148 -7200 # Node ID 7ac25d2de0ac9d86babe544a7f71336b2c022952 # Parent 7d7cf7f9d5ca2bba6d4539d48c472199198b2051 Fixed table start output. diff -r 7d7cf7f9d5ca -r 7ac25d2de0ac EventAggregatorSupport/View.py --- a/EventAggregatorSupport/View.py Mon Jun 17 01:24:30 2013 +0200 +++ b/EventAggregatorSupport/View.py Mon Jun 17 16:25:48 2013 +0200 @@ -2029,7 +2029,7 @@ # Output a month. - append(fmt.table(on=1, attrs={"tableclass" : "event-month", "summary" : _("A table showing a calendar month")}})) + append(fmt.table(on=1, attrs={"tableclass" : "event-month", "summary" : _("A table showing a calendar month")})) # Either write a month heading or produce links for navigable # calendars. @@ -2099,7 +2099,7 @@ for date in self.first.days_until(self.last): - append(fmt.table(on=1, attrs={"tableclass" : "event-calendar-day", "summary" : _("A table showing a calendar day")}})) + append(fmt.table(on=1, attrs={"tableclass" : "event-calendar-day", "summary" : _("A table showing a calendar day")})) full_coverage, day_slots = getCoverage( getEventsInPeriod(all_shown_events, getCalendarPeriod(date, date)), "datetime")