Skip to content

Commit b69e4f4

Browse files
committed
Correcting incorrect tag
1 parent 03e455e commit b69e4f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Calendar/Calendar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def generate_calendar_html(date):
266266
html.append("<td style='background:#f9f9f9; opacity:.5'>")
267267

268268
day_link = "?v=d&d=%d-%d-%d" % (day.year, day.month, day.day)
269-
html.append("<a class='daynum' href='%s'>%d</div>" % (day_link, day.day))
269+
html.append("<a class='daynum' href='%s'>%d</a>" % (day_link, day.day))
270270
for ev in events:
271271

272272
classes = ['event']

0 commit comments

Comments
 (0)