diff options
| author | Bobby <[email protected]> | 2024-03-27 22:36:55 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-03-27 22:36:55 -0400 |
| commit | c9c4d39cb46d5225512cd3fa030405fe0c925157 (patch) | |
| tree | 25cf44511c2bb1bb9f72e4e98aa0b103df16fcaf | |
| parent | 6db0708d10192a24760035e12bb7eee8c2b4e2d7 (diff) | |
| parent | 7fec39909e24e8ee7ffd7412286d33c59f600630 (diff) | |
| download | thatcomputerscientist-c9c4d39cb46d5225512cd3fa030405fe0c925157.tar.xz thatcomputerscientist-c9c4d39cb46d5225512cd3fa030405fe0c925157.zip | |
Merge branch 'main' of https://github.com/luciferreeves/thatcomputerscientist
| -rw-r--r-- | blog/models.py | 2 |
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( |
