Fixed bug #3357. Formatting of the date was messed up.

svn: r13607
This commit is contained in:
Rob G. Healey 2009-11-17 09:26:28 +00:00
parent 24bc002117
commit f9f4a0a3a5

View File

@ -2597,7 +2597,7 @@ class MediaPage(BasePage):
if date: if date:
trow = Html("tr") + ( trow = Html("tr") + (
Html("td", DHEAD, class_ = "ColumnAttribute", inline = True), Html("td", DHEAD, class_ = "ColumnAttribute", inline = True),
Html("td", format(date), class_ = "ColumnValue", inline = True) Html("td", format_date(date), class_ = "ColumnValue", inline = True)
) )
table += trow table += trow