aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-03-27 22:36:55 -0400
committerBobby <[email protected]>2024-03-27 22:36:55 -0400
commitc9c4d39cb46d5225512cd3fa030405fe0c925157 (patch)
tree25cf44511c2bb1bb9f72e4e98aa0b103df16fcaf
parent6db0708d10192a24760035e12bb7eee8c2b4e2d7 (diff)
parent7fec39909e24e8ee7ffd7412286d33c59f600630 (diff)
downloadthatcomputerscientist-c9c4d39cb46d5225512cd3fa030405fe0c925157.tar.xz
thatcomputerscientist-c9c4d39cb46d5225512cd3fa030405fe0c925157.zip
Merge branch 'main' of https://github.com/luciferreeves/thatcomputerscientist
-rw-r--r--blog/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/models.py b/blog/models.py
index e8c0eb10..f564cd75 100644
--- a/blog/models.py
+++ b/blog/models.py
@@ -74,7 +74,7 @@ class AnonymousCommentUser(models.Model):
return cls(email=email_hash, token=token_hash, avatar=avatar)
def __str__(self):
- return self.name
+ return self.name + "(" + self.email + ")"
class Comment(models.Model):
post = models.ForeignKey(