Repository : http://git.fedorahosted.org/cgit/fedocal.git
On branch : master
commit 084b50797309486790c47361a9363ae6e3c26005 Author: Johan Cwiklinski johan@x-tnd.be Date: Tue Nov 6 08:55:40 2012 +0100
No comma beetween css classes
fedocal/fedocallib/fedora_calendar.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fedocal/fedocallib/fedora_calendar.py b/fedocal/fedocallib/fedora_calendar.py index 8c7b981..932a142 100644 --- a/fedocal/fedocallib/fedora_calendar.py +++ b/fedocal/fedocallib/fedora_calendar.py @@ -52,7 +52,7 @@ class FedocalCalendar(HTMLCalendar): if day == cur_date.day \ and self.month == cur_date.month \ and self.year == cur_date.year: - return '<td class="%s, today">%s</td>' % ( + return '<td class="%s today">%s</td>' % ( self.cssclasses[weekday], link_day) else: return '<td class="%s">%s</td>' % (
fedocal-devel@lists.fedorahosted.org