Skip to content

Commit

Permalink
Prefix this with what kind of object it is.
Browse files Browse the repository at this point in the history
  • Loading branch information
akumria committed Feb 28, 2012
1 parent 17cb064 commit 6c2d83b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instagram/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def object_from_dictionary(cls, entry):
return cls(id=id, user=user, text=text, created_at=created_at)

def __unicode__(self):
return "%s said \"%s\"" % (self.user.username, self.message)
return "Comment: %s said \"%s\"" % (self.user.username, self.text)

class Caption(Comment):
pass
Expand Down

0 comments on commit 6c2d83b

Please sign in to comment.