Fix stupid typo

This commit is contained in:
Drew DeVault 2017-11-08 09:15:03 -05:00
parent e5b16caa5a
commit 439b0ff1a1
1 changed files with 1 additions and 1 deletions

View File

@ -62,5 +62,5 @@ class Ticket(Base):
TicketSeen.ticket_id == self.id)
.one_or_none())
if seen:
return seen.last_view >= self.updated:
return seen.last_view >= self.updated
return None