This commit is contained in:
Michael Gregson 2009-01-28 01:07:58 -05:00
parent ac196a1f31
commit 58cd47a1b3
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Book(SQLObject):
if signouts.count() > 0: if signouts.count() > 0:
book += "\nSigned Out: " book += "\nSigned Out: "
for s in signouts: for s in signouts:
book += s.username + " (" + s.due_date + "), " book += s.username + " (" + str(s.due_date) + "), "
book = book.strip(", ") book = book.strip(", ")