Skip to content

Commit

Permalink
Fix ticket model __str__ method
Browse files Browse the repository at this point in the history
  • Loading branch information
sks444 committed May 6, 2020
1 parent c0d20e4 commit b8dddb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion junction/tickets/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ class Ticket(AuditModel):
others = JSONField()

def __str__(self):
return self.name, self.email, self.ticket_no
return "{} : {} : {}".format(self.name, self.email, self.ticket_no)

0 comments on commit b8dddb9

Please sign in to comment.